summaryrefslogtreecommitdiffstats
path: root/Demo/tkinter/matt/00-HELLO-WORLD.py
diff options
context:
space:
mode:
Diffstat (limited to 'Demo/tkinter/matt/00-HELLO-WORLD.py')
-rw-r--r--Demo/tkinter/matt/00-HELLO-WORLD.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Demo/tkinter/matt/00-HELLO-WORLD.py b/Demo/tkinter/matt/00-HELLO-WORLD.py
index 1c3151b..20a2050 100644
--- a/Demo/tkinter/matt/00-HELLO-WORLD.py
+++ b/Demo/tkinter/matt/00-HELLO-WORLD.py
@@ -5,7 +5,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',