Kaydet (Commit) f4c4f115 authored tarafından Neal Norwitz's avatar Neal Norwitz

Add missing self for method call

üst 3e0edbf4
......@@ -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:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment