Skip to content

Commit f6a6549

Browse files
authored
Add tkFileDialog to future.movers.tkinter
Related to issue #233 / Commit a6ed514
1 parent 01a1d31 commit f6a6549

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/future/moves/tkinter/filedialog.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,9 @@
1010
except ImportError:
1111
raise ImportError('The FileDialog module is missing. Does your Py2 '
1212
'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

Comments
 (0)