Project/DebuggerPropertiesDialog.py

changeset 945
8cd4d08fa9f6
parent 882
34b86be88bf0
child 1112
8a7d1b9d18db
--- a/Project/DebuggerPropertiesDialog.py	Fri Mar 11 08:55:14 2011 +0100
+++ b/Project/DebuggerPropertiesDialog.py	Fri Mar 11 16:51:57 2011 +0100
@@ -27,7 +27,7 @@
     """
     Class implementing a dialog for entering project specific debugger settings.
     """
-    def __init__(self, project, parent = None, name = None):
+    def __init__(self, project, parent=None, name=None):
         """
         Constructor
         
@@ -57,13 +57,13 @@
             self.debugClientEdit.setText(self.project.debugProperties["DEBUGCLIENT"])
         else:
             if self.project.pdata["PROGLANGUAGE"][0] in ["Python", "Python2"]:
-                debugClient = os.path.join(getConfig('ericDir'), 
+                debugClient = os.path.join(getConfig('ericDir'),
                                            "DebugClients", "Python", "DebugClient.py")
             elif self.project.pdata["PROGLANGUAGE"][0] == "Python3":
-                debugClient = os.path.join(getConfig('ericDir'), 
+                debugClient = os.path.join(getConfig('ericDir'),
                                            "DebugClients", "Python3", "DebugClient.py")
             elif self.project.pdata["PROGLANGUAGE"][0] == "Ruby":
-                debugClient = os.path.join(getConfig('ericDir'), 
+                debugClient = os.path.join(getConfig('ericDir'),
                     "DebugClients", "Ruby", "DebugClient.rb")
             else:
                 debugClient = ""
@@ -139,13 +139,13 @@
             self.debugClientEdit.text()
         if not self.project.debugProperties["DEBUGCLIENT"]:
             if self.project.pdata["PROGLANGUAGE"][0] in ["Python", "Python2"]:
-                debugClient = os.path.join(getConfig('ericDir'), 
+                debugClient = os.path.join(getConfig('ericDir'),
                                            "DebugClients", "Python", "DebugClient.py")
             elif self.project.pdata["PROGLANGUAGE"][0] == "Python3":
-                debugClient = os.path.join(getConfig('ericDir'), 
+                debugClient = os.path.join(getConfig('ericDir'),
                                            "DebugClients", "Python3", "DebugClient.py")
             elif self.project.pdata["PROGLANGUAGE"][0] == "Ruby":
-                debugClient = os.path.join(getConfig('ericDir'), 
+                debugClient = os.path.join(getConfig('ericDir'),
                     "DebugClients", "Ruby", "DebugClient.rb")
             else:
                 debugClient = ""

eric ide

mercurial