mirror of https://github.com/python/cpython
Add a missing 'self,' to a super call in recently checked-in code.
This was reported in the IDLEFORK bug tracker as #754971.
This commit is contained in:
parent
7de3772b28
commit
8b76351934
|
@ -89,7 +89,7 @@ class Open(_Dialog):
|
||||||
if not widget.tk.wantobjects() and "multiple" in self.options:
|
if not widget.tk.wantobjects() and "multiple" in self.options:
|
||||||
# Need to split result explicitly
|
# Need to split result explicitly
|
||||||
return self._fixresult(widget, widget.tk.splitlist(result))
|
return self._fixresult(widget, widget.tk.splitlist(result))
|
||||||
return _Dialog._fixresult(widget, result)
|
return _Dialog._fixresult(self, widget, result)
|
||||||
|
|
||||||
class SaveAs(_Dialog):
|
class SaveAs(_Dialog):
|
||||||
"Ask for a filename to save as"
|
"Ask for a filename to save as"
|
||||||
|
|
Loading…
Reference in New Issue