diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-01-04 18:53:28 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-01-04 18:53:28 (GMT) |
commit | d6d63f543796c48fd9a1f297b860287443687d2e (patch) | |
tree | 63875b35c0fc3f1e7280dce75cb12c052915ce69 /Demo/tkinter/matt/dialog-box.py | |
parent | 6cb2bddb85d2cdc16c214b35d795fb60840bcc67 (diff) | |
download | cpython-d6d63f543796c48fd9a1f297b860287443687d2e.zip cpython-d6d63f543796c48fd9a1f297b860287443687d2e.tar.gz cpython-d6d63f543796c48fd9a1f297b860287443687d2e.tar.bz2 |
fix a lot of Tkinter imports
Diffstat (limited to 'Demo/tkinter/matt/dialog-box.py')
-rw-r--r-- | Demo/tkinter/matt/dialog-box.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Demo/tkinter/matt/dialog-box.py b/Demo/tkinter/matt/dialog-box.py index 0c71c3a..c0b8825 100644 --- a/Demo/tkinter/matt/dialog-box.py +++ b/Demo/tkinter/matt/dialog-box.py @@ -1,5 +1,5 @@ -from Tkinter import * -from Dialog import Dialog +from tkinter import * +from tkinter.dialog import Dialog # this shows how to create a new window with a button in it # that can create new windows |