Commit 8b763519 authored by Guido van Rossum's avatar Guido van Rossum

Add a missing 'self,' to a super call in recently checked-in code.

This was reported in the IDLEFORK bug tracker as #754971.
parent 7de3772b
......@@ -89,7 +89,7 @@ class Open(_Dialog):
if not widget.tk.wantobjects() and "multiple" in self.options:
# Need to split result explicitly
return self._fixresult(widget, widget.tk.splitlist(result))
return _Dialog._fixresult(widget, result)
return _Dialog._fixresult(self, widget, result)
class SaveAs(_Dialog):
"Ask for a filename to save as"
......
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