From 8b76351934be5fcb53791019dab13ba3d6df4f89 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Sun, 15 Jun 2003 19:08:57 +0000 Subject: Add a missing 'self,' to a super call in recently checked-in code. This was reported in the IDLEFORK bug tracker as #754971. --- Lib/lib-tk/tkFileDialog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" -- cgit v0.12