We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fa57ed9 + f6a6549 commit 741722dCopy full SHA for 741722d
src/future/moves/tkinter/filedialog.py
@@ -10,3 +10,9 @@
10
except ImportError:
11
raise ImportError('The FileDialog module is missing. Does your Py2 '
12
'installation include tkinter?')
13
+
14
+ try:
15
+ from tkFileDialog import *
16
+ except ImportError:
17
+ raise ImportError('The tkFileDialog module is missing. Does your Py2 '
18
+ 'installation include tkinter?')
0 commit comments