Sun, 24 Jul 2016 19:26:45 +0200
Fixed a few bugs in the debugger interfaces related to path separator of different operating systems.
--- a/Debugger/DebuggerInterfacePython.py Sun Jul 24 16:51:17 2016 +0200 +++ b/Debugger/DebuggerInterfacePython.py Sun Jul 24 19:26:45 2016 +0200 @@ -198,7 +198,7 @@ rhost = "localhost" if rexec: args = Utilities.parseOptionString(rexec) + \ - [rhost, interpreter, os.path.abspath(debugClient), + [rhost, interpreter, debugClient, noencoding, str(port), redirect, ipaddr] args[0] = Utilities.getExecutablePath(args[0]) process = self.__startProcess(args[0], args[1:])
--- a/Debugger/DebuggerInterfacePython3.py Sun Jul 24 16:51:17 2016 +0200 +++ b/Debugger/DebuggerInterfacePython3.py Sun Jul 24 19:26:45 2016 +0200 @@ -195,7 +195,7 @@ rhost = "localhost" if rexec: args = Utilities.parseOptionString(rexec) + \ - [rhost, interpreter, os.path.abspath(debugClient), + [rhost, interpreter, debugClient, noencoding, str(port), redirect, ipaddr] args[0] = Utilities.getExecutablePath(args[0]) process = self.__startProcess(args[0], args[1:])
--- a/Debugger/DebuggerInterfaceRuby.py Sun Jul 24 16:51:17 2016 +0200 +++ b/Debugger/DebuggerInterfaceRuby.py Sun Jul 24 19:26:45 2016 +0200 @@ -173,7 +173,7 @@ rhost = "localhost" if rexec: args = Utilities.parseOptionString(rexec) + \ - [rhost, interpreter, os.path.abspath(debugClient), + [rhost, interpreter, debugClient, str(port), redirect, ipaddr] args[0] = Utilities.getExecutablePath(args[0]) process = self.__startProcess(args[0], args[1:])