Debugger/DebuggerInterfaceRuby.py

branch
Py2 comp.
changeset 3060
5883ce99ee12
parent 3058
0a02c433f52d
parent 3032
927a2f8b3669
child 3145
a9de05d4a22f
diff -r 0a02c433f52d -r 5883ce99ee12 Debugger/DebuggerInterfaceRuby.py
--- a/Debugger/DebuggerInterfaceRuby.py	Fri Nov 01 15:48:48 2013 +0100
+++ b/Debugger/DebuggerInterfaceRuby.py	Sun Nov 03 15:58:22 2013 +0100
@@ -159,7 +159,7 @@
                 rhost = "localhost"
             if rexec:
                 args = Utilities.parseOptionString(rexec) + \
-                       [rhost, interpreter, os.path.abspath(debugClient),
+                    [rhost, interpreter, os.path.abspath(debugClient),
                         str(port), redirect, ipaddr]
                 args[0] = Utilities.getExecutablePath(args[0])
                 process = self.__startProcess(args[0], args[1:])
@@ -206,7 +206,7 @@
             ccmd = Preferences.getDebugger("ConsoleDbgCommand")
             if ccmd:
                 args = Utilities.parseOptionString(ccmd) + \
-                       [interpreter, os.path.abspath(debugClient),
+                    [interpreter, os.path.abspath(debugClient),
                         str(port), '0', ipaddr]
                 args[0] = Utilities.getExecutablePath(args[0])
                 process = self.__startProcess(args[0], args[1:], clientEnv)
@@ -259,7 +259,7 @@
                 rhost = "localhost"
             if rexec:
                 args = Utilities.parseOptionString(rexec) + \
-                       [rhost, interpreter, os.path.abspath(debugClient),
+                    [rhost, interpreter, os.path.abspath(debugClient),
                         str(port), redirect, ipaddr]
                 args[0] = Utilities.getExecutablePath(args[0])
                 process = self.__startProcess(args[0], args[1:])
@@ -303,10 +303,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),
                         str(port), '0', ipaddr]
                 args[0] = Utilities.getExecutablePath(args[0])
                 process = self.__startProcess(args[0], args[1:], clientEnv)

eric ide

mercurial