--- 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.