Debugger/DebuggerInterfacePython.py

changeset 564
b3d966393ba9
parent 537
72b32daeb8d6
child 711
8cd4f7a574a2
diff -r e35d2cda9a74 -r b3d966393ba9 Debugger/DebuggerInterfacePython.py
--- a/Debugger/DebuggerInterfacePython.py	Sat Sep 04 19:51:19 2010 +0200
+++ b/Debugger/DebuggerInterfacePython.py	Sat Sep 04 19:51:48 2010 +0200
@@ -147,7 +147,7 @@
         if interpreter == "":
             E5MessageBox.critical(None,
                 self.trUtf8("Start Debugger"),
-                self.trUtf8(\
+                self.trUtf8(
                     """<p>No Python2 interpreter configured.</p>"""))
             return None, False
         
@@ -183,7 +183,7 @@
                 if process is None:
                     E5MessageBox.critical(None,
                         self.trUtf8("Start Debugger"),
-                        self.trUtf8(\
+                        self.trUtf8(
                             """<p>The debugger backend could not be started.</p>"""))
                 
                 # set translation function
@@ -205,7 +205,7 @@
             clientEnv = {}
         else:
             clientEnv = os.environ.copy()
-        envlist = Utilities.parseEnvironmentString(\
+        envlist = Utilities.parseEnvironmentString(
             Preferences.getDebugger("DebugEnvironment"))
         for el in envlist:
             try:
@@ -228,7 +228,7 @@
                 if process is None:
                     E5MessageBox.critical(None,
                         self.trUtf8("Start Debugger"),
-                        self.trUtf8(\
+                        self.trUtf8(
                             """<p>The debugger backend could not be started.</p>"""))
                 return process, self.__isNetworked
         
@@ -278,7 +278,7 @@
                 if process is None:
                     E5MessageBox.critical(None,
                         self.trUtf8("Start Debugger"),
-                        self.trUtf8(\
+                        self.trUtf8(
                             """<p>The debugger backend could not be started.</p>"""))
                 # set translation function
                 if project.getDebugProperty("PATHTRANSLATION"):
@@ -321,7 +321,7 @@
                 if process is None:
                     E5MessageBox.critical(None,
                         self.trUtf8("Start Debugger"),
-                        self.trUtf8(\
+                        self.trUtf8(
                             """<p>The debugger backend could not be started.</p>"""))
                 return process, self.__isNetworked
         
@@ -718,7 +718,7 @@
         Private method to ask the user which branch of a fork to follow.
         """
         selections = [self.trUtf8("Parent Process"), self.trUtf8("Child process")]
-        res, ok = QInputDialog.getItem(\
+        res, ok = QInputDialog.getItem(
             None,
             self.trUtf8("Client forking"),
             self.trUtf8("Select the fork branch to follow."),
@@ -945,4 +945,4 @@
         if self.qsock is not None:
             self.qsock.write(cmd.encode('utf8'))
         else:
-            self.queue.append(cmd)
+            self.queue.append(cmd)
\ No newline at end of file

eric ide

mercurial