diff options
author | Guilherme Polo <ggpolo@gmail.com> | 2008-05-24 18:24:49 (GMT) |
---|---|---|
committer | Guilherme Polo <ggpolo@gmail.com> | 2008-05-24 18:24:49 (GMT) |
commit | 6acb075f03ec5ecb8d89bc56fae99dc8c5a510ab (patch) | |
tree | 1fd3593fd97f7b2891e8196337fd14971784516e /Lib/lib-tk | |
parent | b897c9a1a64f744b32d23eeac54a2eba51ced0b4 (diff) | |
download | cpython-6acb075f03ec5ecb8d89bc56fae99dc8c5a510ab.zip cpython-6acb075f03ec5ecb8d89bc56fae99dc8c5a510ab.tar.gz cpython-6acb075f03ec5ecb8d89bc56fae99dc8c5a510ab.tar.bz2 |
Fixed an import that remained from the lib-tk -> tkinter -> lib-tk renaming
Diffstat (limited to 'Lib/lib-tk')
-rw-r--r-- | Lib/lib-tk/tkMessageBox.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/lib-tk/tkMessageBox.py b/Lib/lib-tk/tkMessageBox.py index 8f7483f..d14ca86 100644 --- a/Lib/lib-tk/tkMessageBox.py +++ b/Lib/lib-tk/tkMessageBox.py @@ -22,7 +22,7 @@ # - type: dialog type; that is, which buttons to display (see below) # -from Tkinter.commondialog import Dialog +from tkCommonDialog import Dialog # # constants |