diff options
Diffstat (limited to 'Demo/tkinter/matt/packer-simple.py')
-rw-r--r-- | Demo/tkinter/matt/packer-simple.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Demo/tkinter/matt/packer-simple.py b/Demo/tkinter/matt/packer-simple.py index f55f1be..1a505dd 100644 --- a/Demo/tkinter/matt/packer-simple.py +++ b/Demo/tkinter/matt/packer-simple.py @@ -3,7 +3,7 @@ from Tkinter import * class Test(Frame): def printit(self): - print self.hi_there["command"] + print(self.hi_there["command"]) def createWidgets(self): # a hello button |