We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a02c492 commit 11fc768Copy full SHA for 11fc768
graalpython/com.oracle.graal.python/src/com/oracle/graal/python/runtime/PythonContext.java
@@ -1184,8 +1184,8 @@ public void patch(Env newEnv) {
1184
private void importSiteIfForced() {
1185
PythonModule siteModule;
1186
if (getOption(PythonOptions.ForceImportSite) &&
1187
- getOption(PythonOptions.PythonPath).isEmpty() &&
1188
- (siteModule = ImpModuleBuiltins.importFrozenModuleObject(this, "graalpython.site", true)) != null) {
+ getOption(PythonOptions.PythonPath).isEmpty() &&
+ (siteModule = ImpModuleBuiltins.importFrozenModuleObject(this, "graalpython.site", true)) != null) {
1189
// assume we can use the frozen site module
1190
// TODO: rename graalpython.site again to just site when we upgrade to Python 3.10+
1191
// or newer and remove this hack
0 commit comments