# HG changeset patch # User Denver Coneybeare # Date 1301797364 14400 # Node ID dc5b2881c5243cc3d69395e0af7a67a8edbe7c99 # Parent 053bc5ca199bf19d778ae0ad692b996bb6286c6e fix incorrect case of error message in idlelib/PyShell.py: "Tkinter" corrected to "tkinter" diff -r 053bc5ca199b -r dc5b2881c524 Lib/idlelib/PyShell.py --- a/Lib/idlelib/PyShell.py Fri Apr 01 18:16:36 2011 +0200 +++ b/Lib/idlelib/PyShell.py Sat Apr 02 22:22:44 2011 -0400 @@ -17,7 +17,7 @@ try: from tkinter import * except ImportError: - print("** IDLE can't import Tkinter. " \ + print("** IDLE can't import tkinter. " \ "Your Python may not be configured for Tk. **", file=sys.__stderr__) sys.exit(1) import tkinter.messagebox as tkMessageBox