summaryrefslogtreecommitdiff
path: root/Lib/tkinter/simpledialog.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/simpledialog.py
parenta884f6c3c2de2b7b215c1e909e8985cc4159ffc4 (diff)
downloadcpython-bf2491fc3ccf1ba59b5e1a8f82066f76c8650a17.tar.gz
Tkinter, step 2: adapt imports.
Diffstat (limited to 'Lib/tkinter/simpledialog.py')
-rw-r--r--Lib/tkinter/simpledialog.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/tkinter/simpledialog.py b/Lib/tkinter/simpledialog.py
index fa2d1adc70..36c62588ce 100644
--- a/Lib/tkinter/simpledialog.py
+++ b/Lib/tkinter/simpledialog.py
@@ -1,7 +1,7 @@
"""A simple but flexible modal dialog box."""
-from Tkinter import *
+from tkinter import *
class SimpleDialog: