eric6/Debugger/DebugServer.py

changeset 7901
6ff7ccf0cb50
parent 7897
9acc015ea443
child 7915
e68f5c568aee
diff -r 72b88fb20261 -r 6ff7ccf0cb50 eric6/Debugger/DebugServer.py
--- a/eric6/Debugger/DebugServer.py	Sat Dec 19 15:22:26 2020 +0100
+++ b/eric6/Debugger/DebugServer.py	Sat Dec 19 19:57:09 2020 +0100
@@ -962,7 +962,9 @@
         @type str
         """
         self.__autoClearShell = autoClearShell
-        self.__multiprocessNoDebugList = multiprocessNoDebug.split()
+        self.__multiprocessNoDebugList = [
+            s.strip() for s in multiprocessNoDebug.split(os.pathsep)
+        ]
         
         if clientType not in self.getSupportedLanguages():
             # a not supported client language was requested
@@ -2228,7 +2230,8 @@
     
     def __restoreNoDebugList(self, debuggerId=""):
         """
-        Private method to restore the watch expressions after a restart.
+        Private method to restore the list of scripts not to be debugged after
+        a restart.
         
         @param debuggerId ID of the debugger backend to send to. If this is
             empty, they will be broadcast to all connected backends.

eric ide

mercurial