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:
Guido van Rossum 2003-06-15 19:08:57 +00:00
parent 7de3772b28
commit 8b76351934
1 changed files with 1 additions and 1 deletions

View File

@ -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"