diff -r 72b88fb20261 -r 6ff7ccf0cb50 eric6/DebugClients/Python/QProcessExtension.py --- a/eric6/DebugClients/Python/QProcessExtension.py Sat Dec 19 15:22:26 2020 +0100 +++ b/eric6/DebugClients/Python/QProcessExtension.py Sat Dec 19 19:57:09 2020 +0100 @@ -84,7 +84,7 @@ scriptName = os.path.basename(program) else: scriptName = os.path.basename(arguments[0]) - if scriptName not in _debugClient.noDebugList: + if not _debugClient.skipMultiProcessDebugging(scriptName): newArgs = patchArguments( _debugClient, [program] + arguments, @@ -184,7 +184,7 @@ scriptName = os.path.basename(program) else: scriptName = os.path.basename(arguments[0]) - if scriptName not in _debugClient.noDebugList: + if not _debugClient.skipMultiProcessDebugging(scriptName): newArgs = patchArguments( _debugClient, [program] + arguments,