From 426d360c88cb7dc824bd01b6145884638a11dc78 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Wed, 31 Dec 2008 14:54:48 +0000 Subject: [PATCH] Merged revisions 68103 via svnmerge from svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r68103 | benjamin.peterson | 2008-12-31 08:51:07 -0600 (Wed, 31 Dec 2008) | 1 line #4406 Directory has to inherit from commondialog.Dialog ........ --- Lib/tkinter/filedialog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/tkinter/filedialog.py b/Lib/tkinter/filedialog.py index 599c8f2d1ec0..98d2d5c32056 100644 --- a/Lib/tkinter/filedialog.py +++ b/Lib/tkinter/filedialog.py @@ -350,7 +350,7 @@ class SaveAs(_Dialog): # the directory dialog has its own _fix routines. -class Directory(Dialog): +class Directory(commondialog.Dialog): "Ask for a directory" command = "tk_chooseDirectory" -- 2.47.3