summaryrefslogtreecommitdiffstats
path: root/Demo/tkinter/matt/two-radio-groups.py
diff options
context:
space:
mode:
Diffstat (limited to 'Demo/tkinter/matt/two-radio-groups.py')
-rw-r--r--Demo/tkinter/matt/two-radio-groups.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Demo/tkinter/matt/two-radio-groups.py b/Demo/tkinter/matt/two-radio-groups.py
index 9fd8f4f..52513ba 100644
--- a/Demo/tkinter/matt/two-radio-groups.py
+++ b/Demo/tkinter/matt/two-radio-groups.py
@@ -75,9 +75,9 @@ def makeFlavors(var):
def printStuff():
- print "party is", party.get()
- print "flavor is", flavor.get()
- print
+ print("party is", party.get())
+ print("flavor is", flavor.get())
+ print()
#################################################
#### Main starts here ...