Changed path separator to allow it to work on windows as well

This commit is contained in:
Muhammad Taufiq 2020-01-16 14:11:25 +00:00
parent e1ba4131ce
commit a09b6463ab

View file

@ -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);
}
}