Debugger/DebuggerInterfacePython3.py

changeset 3032
927a2f8b3669
parent 3021
801289962f4e
child 3060
5883ce99ee12
child 3160
209a07d7e401
--- a/Debugger/DebuggerInterfacePython3.py	Sat Oct 19 11:14:51 2013 +0200
+++ b/Debugger/DebuggerInterfacePython3.py	Sat Oct 19 11:49:31 2013 +0200
@@ -185,7 +185,7 @@
                 rhost = "localhost"
             if rexec:
                 args = Utilities.parseOptionString(rexec) + \
-                       [rhost, interpreter, os.path.abspath(debugClient),
+                    [rhost, interpreter, os.path.abspath(debugClient),
                         noencoding, str(port), redirect, ipaddr]
                 args[0] = Utilities.getExecutablePath(args[0])
                 process = self.__startProcess(args[0], args[1:])
@@ -232,7 +232,7 @@
             ccmd = Preferences.getDebugger("ConsoleDbgCommand")
             if ccmd:
                 args = Utilities.parseOptionString(ccmd) + \
-                       [interpreter, os.path.abspath(debugClient),
+                    [interpreter, os.path.abspath(debugClient),
                         noencoding, str(port), '0', ipaddr]
                 args[0] = Utilities.getExecutablePath(args[0])
                 process = self.__startProcess(args[0], args[1:], clientEnv)
@@ -287,7 +287,7 @@
                 rhost = "localhost"
             if rexec:
                 args = Utilities.parseOptionString(rexec) + \
-                       [rhost, interpreter, os.path.abspath(debugClient),
+                    [rhost, interpreter, os.path.abspath(debugClient),
                         noencoding, str(port), redirect, ipaddr]
                 args[0] = Utilities.getExecutablePath(args[0])
                 process = self.__startProcess(args[0], args[1:])
@@ -331,10 +331,10 @@
         ipaddr = self.debugServer.getHostAddress(True)
         if runInConsole or project.getDebugProperty("CONSOLEDEBUGGER"):
             ccmd = project.getDebugProperty("CONSOLECOMMAND") or \
-                   Preferences.getDebugger("ConsoleDbgCommand")
+                Preferences.getDebugger("ConsoleDbgCommand")
             if ccmd:
                 args = Utilities.parseOptionString(ccmd) + \
-                       [interpreter, os.path.abspath(debugClient),
+                    [interpreter, os.path.abspath(debugClient),
                         noencoding, str(port), '0', ipaddr]
                 args[0] = Utilities.getExecutablePath(args[0])
                 process = self.__startProcess(args[0], args[1:], clientEnv)

eric ide

mercurial