diff -r 7446a7eacfc3 -r 663f1c3d6f53 eric6/DebugClients/Python/DebugClient.py --- a/eric6/DebugClients/Python/DebugClient.py Sat Feb 08 17:01:47 2020 +0100 +++ b/eric6/DebugClients/Python/DebugClient.py Sat Feb 08 17:02:40 2020 +0100 @@ -10,6 +10,7 @@ from DebugBase import DebugBase from DebugClientBase import DebugClientBase from ThreadExtension import ThreadExtension +from ModuleLoader import ModuleLoader class DebugClient(DebugClientBase, DebugBase, ThreadExtension): @@ -29,6 +30,8 @@ ThreadExtension.__init__(self) + self.__moduleLoader = ModuleLoader(self) + self.variant = 'Standard' # We are normally called by the debugger to execute directly.