diff options
author | Georg Brandl <georg@python.org> | 2008-05-17 18:39:55 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-05-17 18:39:55 +0000 |
commit | bf2491fc3ccf1ba59b5e1a8f82066f76c8650a17 (patch) | |
tree | db66b04ddf9be93a90a3732e5dcd9e1d3fc73904 /Lib/idlelib/TreeWidget.py | |
parent | a884f6c3c2de2b7b215c1e909e8985cc4159ffc4 (diff) | |
download | cpython-bf2491fc3ccf1ba59b5e1a8f82066f76c8650a17.tar.gz |
Tkinter, step 2: adapt imports.
Diffstat (limited to 'Lib/idlelib/TreeWidget.py')
-rw-r--r-- | Lib/idlelib/TreeWidget.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/TreeWidget.py b/Lib/idlelib/TreeWidget.py index 04e16a24c8..d4e524bb65 100644 --- a/Lib/idlelib/TreeWidget.py +++ b/Lib/idlelib/TreeWidget.py @@ -15,7 +15,7 @@ # - optimize tree redraw after expand of subnode import os -from Tkinter import * +from tkinter import * import imp from idlelib import ZoomHeight |