From f4c4f115d80a26eb83d90593c24a1580f236c443 Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Sat, 30 Nov 2002 18:49:10 +0000 Subject: [PATCH] Add missing self for method call --- Lib/idlelib/PyShell.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/idlelib/PyShell.py b/Lib/idlelib/PyShell.py index 3fc814b4c16..28dc2562bfc 100644 --- a/Lib/idlelib/PyShell.py +++ b/Lib/idlelib/PyShell.py @@ -516,7 +516,7 @@ class ModifiedInterpreter(InteractiveInterpreter): "Run the code without invoking the debugger" # The code better not raise an exception! if self.tkconsole.executing: - display_executing_dialog() + self.display_executing_dialog() return 0 if self.rpcclt: self.rpcclt.remotecall("exec", "runcode", (code,), {}) @@ -527,7 +527,7 @@ class ModifiedInterpreter(InteractiveInterpreter): def runcode(self, code): "Override base class method" if self.tkconsole.executing: - display_executing_dialog() + self.display_executing_dialog() return self.checklinecache() if self.save_warnings_filters is not None: