summaryrefslogtreecommitdiff
path: root/Lib/test/test_tcl.py
diff options
context:
space:
mode:
authorGuilherme Polo <ggpolo@gmail.com>2009-02-06 23:04:44 +0000
committerGuilherme Polo <ggpolo@gmail.com>2009-02-06 23:04:44 +0000
commitb41bc91549fdcdb2d206271edd0cccabe56664f8 (patch)
treead597480f1e6823c7b7c3652da0117e95e10a632 /Lib/test/test_tcl.py
parentd8f63bbce50c702086cc93ea2131c268752d45b3 (diff)
downloadcpython-git-b41bc91549fdcdb2d206271edd0cccabe56664f8.tar.gz
Fixing changes from the last merge.
Diffstat (limited to 'Lib/test/test_tcl.py')
-rw-r--r--Lib/test/test_tcl.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_tcl.py b/Lib/test/test_tcl.py
index 4d92b268b8..fa20188b5f 100644
--- a/Lib/test/test_tcl.py
+++ b/Lib/test/test_tcl.py
@@ -10,7 +10,7 @@ from _tkinter import TclError
# Restore Tkinter.Tk._loadtk that may have been overridden by ttk.
# If this is not done then this test may fail for reasons related
# to ttk only (like failing to load the tile package).
-from ttk import __loadtk__
+from tkinter.ttk import __loadtk__
Tk._loadtk = __loadtk__