diff options
Diffstat (limited to 'Demo/tkinter/matt/animation-simple.py')
-rw-r--r-- | Demo/tkinter/matt/animation-simple.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Demo/tkinter/matt/animation-simple.py b/Demo/tkinter/matt/animation-simple.py index b52e1dc..071bde7 100644 --- a/Demo/tkinter/matt/animation-simple.py +++ b/Demo/tkinter/matt/animation-simple.py @@ -4,7 +4,7 @@ from Tkinter import * class Test(Frame): def printit(self): - print "hi" + print("hi") def createWidgets(self): self.QUIT = Button(self, text='QUIT', foreground='red', |