]> granicus.if.org Git - python/commitdiff
Add missing self for method call
authorNeal Norwitz <nnorwitz@gmail.com>
Sat, 30 Nov 2002 18:49:10 +0000 (18:49 +0000)
committerNeal Norwitz <nnorwitz@gmail.com>
Sat, 30 Nov 2002 18:49:10 +0000 (18:49 +0000)
Lib/idlelib/PyShell.py

index 3fc814b4c169f4fc5e664ed9c80da076bb9efdbf..28dc2562bfc9a125c1c71f094dca0697a58626f4 100644 (file)
@@ -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: