From d6d63f543796c48fd9a1f297b860287443687d2e Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Sun, 4 Jan 2009 18:53:28 +0000 Subject: fix a lot of Tkinter imports --- Demo/tkinter/guido/hello.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Demo/tkinter/guido/hello.py') diff --git a/Demo/tkinter/guido/hello.py b/Demo/tkinter/guido/hello.py index 358a7ecebd..f10fb7a3fb 100755 --- a/Demo/tkinter/guido/hello.py +++ b/Demo/tkinter/guido/hello.py @@ -1,7 +1,7 @@ # Display hello, world in a button; clicking it quits the program import sys -from Tkinter import * +from tkinter import * def main(): root = Tk() -- cgit v1.2.1