diff options
Diffstat (limited to 'Lib/idlelib/run.py')
-rw-r--r-- | Lib/idlelib/run.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/idlelib/run.py b/Lib/idlelib/run.py index 1b84d4d..cfb318c 100644 --- a/Lib/idlelib/run.py +++ b/Lib/idlelib/run.py @@ -30,9 +30,9 @@ class Executive: def runcode(self, code): exec code in self.locals - def start_debugger(self, gui_oid): + def start_the_debugger(self, gui_adap_oid): import RemoteDebugger - return RemoteDebugger.start_debugger(self.conn, gui_oid) + return RemoteDebugger.start_debugger(self.conn, gui_adap_oid) def stackviewer(self, flist_oid=None): if not hasattr(sys, "last_traceback"): |