--- 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 = ""