eric6/DebugClients/Python/DebugClient.py

branch
multi_processing
changeset 7404
663f1c3d6f53
parent 7360
9190402e4505
child 7412
0a995393d2ba
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.

eric ide

mercurial