diff -r 10516539f238 -r 0a02c433f52d Debugger/DebuggerInterfacePython3.py --- a/Debugger/DebuggerInterfacePython3.py Fri Oct 18 23:00:41 2013 +0200 +++ b/Debugger/DebuggerInterfacePython3.py Fri Nov 01 15:48:48 2013 +0100 @@ -193,7 +193,8 @@ args[0] = Utilities.getExecutablePath(args[0]) process = self.__startProcess(args[0], args[1:]) if process is None: - E5MessageBox.critical(None, + E5MessageBox.critical( + None, self.trUtf8("Start Debugger"), self.trUtf8( """<p>The debugger backend could not be""" @@ -239,18 +240,21 @@ args[0] = Utilities.getExecutablePath(args[0]) process = self.__startProcess(args[0], args[1:], clientEnv) if process is None: - E5MessageBox.critical(None, + E5MessageBox.critical( + None, self.trUtf8("Start Debugger"), self.trUtf8( """<p>The debugger backend could not be""" """ started.</p>""")) return process, self.__isNetworked - process = self.__startProcess(interpreter, + process = self.__startProcess( + interpreter, [debugClient, noencoding, str(port), redirect, ipaddr], clientEnv) if process is None: - E5MessageBox.critical(None, + E5MessageBox.critical( + None, self.trUtf8("Start Debugger"), self.trUtf8( """<p>The debugger backend could not be started.</p>""")) @@ -291,7 +295,8 @@ args[0] = Utilities.getExecutablePath(args[0]) process = self.__startProcess(args[0], args[1:]) if process is None: - E5MessageBox.critical(None, + E5MessageBox.critical( + None, self.trUtf8("Start Debugger"), self.trUtf8( """<p>The debugger backend could not be""" @@ -337,18 +342,21 @@ args[0] = Utilities.getExecutablePath(args[0]) process = self.__startProcess(args[0], args[1:], clientEnv) if process is None: - E5MessageBox.critical(None, + E5MessageBox.critical( + None, self.trUtf8("Start Debugger"), self.trUtf8( """<p>The debugger backend could not be""" """ started.</p>""")) return process, self.__isNetworked - process = self.__startProcess(interpreter, + process = self.__startProcess( + interpreter, [debugClient, noencoding, str(port), redirect, ipaddr], clientEnv) if process is None: - E5MessageBox.critical(None, + E5MessageBox.critical( + None, self.trUtf8("Start Debugger"), self.trUtf8( """<p>The debugger backend could not be started.</p>""")) @@ -855,7 +863,8 @@ isCall = event.lower() == "c" fromFile, fromLineno, fromFunc = fromStr.rsplit(":", 2) toFile, toLineno, toFunc = toStr.rsplit(":", 2) - self.debugServer.signalClientCallTrace(isCall, + self.debugServer.signalClientCallTrace( + isCall, fromFile, fromLineno, fromFunc, toFile, toLineno, toFunc) continue