]> granicus.if.org Git - python/commitdiff
Add a missing 'self,' to a super call in recently checked-in code.
authorGuido van Rossum <guido@python.org>
Sun, 15 Jun 2003 19:08:57 +0000 (19:08 +0000)
committerGuido van Rossum <guido@python.org>
Sun, 15 Jun 2003 19:08:57 +0000 (19:08 +0000)
This was reported in the IDLEFORK bug tracker as #754971.

Lib/lib-tk/tkFileDialog.py

index fb0014c5daea3788784a1106abcc10a923bf42f6..8419718acbc26e225f8f0f50f2a99b938e82870f 100644 (file)
@@ -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"