diff -r c5cbcc0b288d -r a7cac3e1f1e3 Debugger/DebugUI.py --- a/Debugger/DebugUI.py Sun Dec 19 19:53:48 2010 +0100 +++ b/Debugger/DebugUI.py Wed Dec 22 17:32:24 2010 +0100 @@ -1416,7 +1416,7 @@ if not doNotStart: if runProject and self.project.getProjectType() == "E4Plugin": - argv = "--plugin=%s %s" % (fn, argv) + argv = '--plugin="%s" %s' % (fn, argv) fn = os.path.join(getConfig('ericDir'), "eric5.py") # Ask the client to open the new program. @@ -1520,7 +1520,7 @@ if not doNotStart: if runProject and self.project.getProjectType() == "E4Plugin": - argv = "--plugin=%s %s" % (fn, argv) + argv = '--plugin="%s" %s' % (fn, argv) fn = os.path.join(getConfig('ericDir'), "eric5.py") # Ask the client to open the new program. @@ -1627,7 +1627,7 @@ if not doNotStart: if runProject and self.project.getProjectType() == "E4Plugin": - argv = "--plugin=%s %s" % (fn, argv) + argv = '--plugin="%s" %s' % (fn, argv) fn = os.path.join(getConfig('ericDir'), "eric5.py") # Ask the client to open the new program. @@ -1742,7 +1742,7 @@ if not doNotStart: if debugProject and self.project.getProjectType() == "E4Plugin": - argv = "--plugin=%s %s" % (fn, argv) + argv = '--plugin="%s" %s' % (fn, argv) fn = os.path.join(getConfig('ericDir'), "eric5.py") tracePython = True # override flag because it must be true @@ -1793,7 +1793,7 @@ if not doNotStart: if forProject and self.project.getProjectType() == "E4Plugin": - argv = "--plugin=%s %s" % (fn, argv) + argv = '--plugin="%s" %s' % (fn, argv) fn = os.path.join(getConfig('ericDir'), "eric5.py") if self.lastStartAction in [1, 2]: