[Python-checkins] r68103 - python/branches/py3k/Lib/tkinter/filedialog.py

benjamin.peterson python-checkins at python.org
Wed Dec 31 15:51:07 CET 2008


Author: benjamin.peterson
Date: Wed Dec 31 15:51:07 2008
New Revision: 68103

Log:
#4406 Directory has to inherit from commondialog.Dialog

Modified:
   python/branches/py3k/Lib/tkinter/filedialog.py

Modified: python/branches/py3k/Lib/tkinter/filedialog.py
==============================================================================
--- python/branches/py3k/Lib/tkinter/filedialog.py	(original)
+++ python/branches/py3k/Lib/tkinter/filedialog.py	Wed Dec 31 15:51:07 2008
@@ -350,7 +350,7 @@
 
 
 # the directory dialog has its own _fix routines.
-class Directory(Dialog):
+class Directory(commondialog.Dialog):
     "Ask for a directory"
 
     command = "tk_chooseDirectory"


More information about the Python-checkins mailing list