[Python-checkins] r67261 - sandbox/trunk/tkinter-polo/src/Tkinter.py

guilherme.polo python-checkins at python.org
Tue Nov 18 13:46:40 CET 2008


Author: guilherme.polo
Date: Tue Nov 18 13:46:39 2008
New Revision: 67261

Log:
Oops, this should have been Tk() only

Modified:
   sandbox/trunk/tkinter-polo/src/Tkinter.py

Modified: sandbox/trunk/tkinter-polo/src/Tkinter.py
==============================================================================
--- sandbox/trunk/tkinter-polo/src/Tkinter.py	(original)
+++ sandbox/trunk/tkinter-polo/src/Tkinter.py	Tue Nov 18 13:46:39 2008
@@ -145,7 +145,7 @@
     RuntimeError is raised."""
     if master is None:
         if _support_default_root:
-            master = _default_root or Tkinter.Tk()
+            master = _default_root or Tk()
         else:
             raise RuntimeError("No master specified and Tkinter is "
                 "configured to not support default root")


More information about the Python-checkins mailing list