summaryrefslogtreecommitdiff
path: root/Lib/tkinter/filedialog.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-05-17 18:39:55 +0000
committerGeorg Brandl <georg@python.org>2008-05-17 18:39:55 +0000
commitbf2491fc3ccf1ba59b5e1a8f82066f76c8650a17 (patch)
treedb66b04ddf9be93a90a3732e5dcd9e1d3fc73904 /Lib/tkinter/filedialog.py
parenta884f6c3c2de2b7b215c1e909e8985cc4159ffc4 (diff)
downloadcpython-bf2491fc3ccf1ba59b5e1a8f82066f76c8650a17.tar.gz
Tkinter, step 2: adapt imports.
Diffstat (limited to 'Lib/tkinter/filedialog.py')
-rw-r--r--Lib/tkinter/filedialog.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/tkinter/filedialog.py b/Lib/tkinter/filedialog.py
index 9ded88b553..61ffe74c5b 100644
--- a/Lib/tkinter/filedialog.py
+++ b/Lib/tkinter/filedialog.py
@@ -8,8 +8,8 @@ Classes:
"""
-from Tkinter import *
-from Dialog import Dialog
+from tkinter import *
+from tkinter.dialog import Dialog
import os
import fnmatch