Debugger/DebuggerInterfacePython3.py

changeset 3020
542e97d4ecb3
parent 2988
f53c03574697
child 3021
801289962f4e
diff -r 7912530a33e2 -r 542e97d4ecb3 Debugger/DebuggerInterfacePython3.py
--- a/Debugger/DebuggerInterfacePython3.py	Mon Oct 14 18:26:25 2013 +0200
+++ b/Debugger/DebuggerInterfacePython3.py	Mon Oct 14 19:30:36 2013 +0200
@@ -190,7 +190,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"""
@@ -236,7 +237,8 @@
                 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"""
@@ -247,7 +249,8 @@
             [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>"""))
@@ -288,7 +291,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"""
@@ -334,7 +338,8 @@
                 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"""
@@ -345,7 +350,8 @@
             [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>"""))

eric ide

mercurial