fix wrong python path on windows

This commit is contained in:
Sebastian Sdorra
2012-02-25 15:53:04 +01:00
parent 9d158af212
commit 1283052a3f

View File

@@ -236,7 +236,8 @@ public class HgCGIServlet extends HttpServlet
{ {
if (Util.isNotEmpty(config.getPythonPath())) if (Util.isNotEmpty(config.getPythonPath()))
{ {
pythonPath = pythonPath.concat(":").concat(config.getPythonPath()); pythonPath =
pythonPath.concat(File.pathSeparator).concat(config.getPythonPath());
} }
} }