mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
Changed path separator to allow it to work on windows as well
This commit is contained in:
parent
e1ba4131ce
commit
a09b6463ab
1 changed files with 1 additions and 1 deletions
|
|
@ -219,7 +219,7 @@ public class PythonInterpreter extends Interpreter {
|
|||
if (!env.containsKey("PYTHONPATH")) {
|
||||
env.put("PYTHONPATH", path);
|
||||
} else {
|
||||
env.put("PYTHONPATH", env.get("PYTHONPATH") + ":" + path);
|
||||
env.put("PYTHONPATH", env.get("PYTHONPATH") + File.pathSeparator + path);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue