Skip to content

Commit

Permalink
Add tkFileDialog to future.movers.tkinter
Browse files Browse the repository at this point in the history
Related to issue #233 / Commit a6ed514
  • Loading branch information
KyleKing authored Dec 6, 2019
1 parent 01a1d31 commit f6a6549
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/future/moves/tkinter/filedialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,9 @@
except ImportError:
raise ImportError('The FileDialog module is missing. Does your Py2 '
'installation include tkinter?')

try:
from tkFileDialog import *
except ImportError:
raise ImportError('The tkFileDialog module is missing. Does your Py2 '
'installation include tkinter?')

0 comments on commit f6a6549

Please sign in to comment.