diff options
author | Guido van Rossum <guido@python.org> | 2003-06-15 19:08:57 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2003-06-15 19:08:57 (GMT) |
commit | 8b76351934be5fcb53791019dab13ba3d6df4f89 (patch) | |
tree | 6b25230a7edc6cff531c38dc178cd842a6bea073 /Lib | |
parent | 7de3772b2834ab18e160626912feb98abecb5104 (diff) | |
download | cpython-8b76351934be5fcb53791019dab13ba3d6df4f89.zip cpython-8b76351934be5fcb53791019dab13ba3d6df4f89.tar.gz cpython-8b76351934be5fcb53791019dab13ba3d6df4f89.tar.bz2 |
Add a missing 'self,' to a super call in recently checked-in code.
This was reported in the IDLEFORK bug tracker as #754971.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/lib-tk/tkFileDialog.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/lib-tk/tkFileDialog.py b/Lib/lib-tk/tkFileDialog.py index fb0014c..8419718 100644 --- a/Lib/lib-tk/tkFileDialog.py +++ b/Lib/lib-tk/tkFileDialog.py @@ -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" |