[Python-checkins] r63588 - python/trunk/Lib/lib-tk/tkMessageBox.py

guilherme.polo python-checkins at python.org
Sat May 24 20:24:49 CEST 2008


Author: guilherme.polo
Date: Sat May 24 20:24:49 2008
New Revision: 63588

Log:
Fixed an import that remained from the lib-tk -> tkinter -> lib-tk renaming

Modified:
   python/trunk/Lib/lib-tk/tkMessageBox.py

Modified: python/trunk/Lib/lib-tk/tkMessageBox.py
==============================================================================
--- python/trunk/Lib/lib-tk/tkMessageBox.py	(original)
+++ python/trunk/Lib/lib-tk/tkMessageBox.py	Sat May 24 20:24:49 2008
@@ -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


More information about the Python-checkins mailing list