Update of /cvsroot/pydev/org.python.pydev.debug/src_console/org/python/pydev/debug/newconsole/env
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25506/src_console/org/python/pydev/debug/newconsole/env
Modified Files:
IProcessFactory.java
Log Message:
Fixed problem while creating jython shell.
Index: IProcessFactory.java
===================================================================
RCS file: /cvsroot/pydev/org.python.pydev.debug/src_console/org/python/pydev/debug/newconsole/env/IProcessFactory.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** IProcessFactory.java 21 May 2008 01:38:14 -0000 1.6
--- IProcessFactory.java 14 Jun 2008 23:36:00 -0000 1.7
***************
*** 96,100 ****
if(interpreterManager.isPython()){
commandLine = SimplePythonRunner.makeExecutableCommandStr(scriptWithinPySrc.getAbsolutePath(),
! new String[]{""+port, ""+clientPort});
}else if(interpreterManager.isJython()){
--- 96,100 ----
if(interpreterManager.isPython()){
commandLine = SimplePythonRunner.makeExecutableCommandStr(scriptWithinPySrc.getAbsolutePath(),
! new String[]{String.valueOf(port), String.valueOf(clientPort)});
}else if(interpreterManager.isJython()){
***************
*** 103,107 ****
commandLine = SimpleJythonRunner.makeExecutableCommandStrWithVMArgs(scriptWithinPySrc.getAbsolutePath(),
! pythonpathEnv, vmArgs, new String[]{""+port, ""+clientPort});
}else{
--- 103,107 ----
commandLine = SimpleJythonRunner.makeExecutableCommandStrWithVMArgs(scriptWithinPySrc.getAbsolutePath(),
! pythonpathEnv, vmArgs, new String[]{String.valueOf(port), String.valueOf(clientPort)});
}else{
|