summaryrefslogtreecommitdiffstats
path: root/Demo/tkinter/guido/optionmenu.py
diff options
context:
space:
mode:
Diffstat (limited to 'Demo/tkinter/guido/optionmenu.py')
-rw-r--r--Demo/tkinter/guido/optionmenu.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Demo/tkinter/guido/optionmenu.py b/Demo/tkinter/guido/optionmenu.py
index be9d3ac..7365fa6 100644
--- a/Demo/tkinter/guido/optionmenu.py
+++ b/Demo/tkinter/guido/optionmenu.py
@@ -21,7 +21,7 @@ CHOICES = "Aah", "Bee", "Cee", "Dee", "Eff"
var2 = StringVar()
var2.set(CHOICES[0])
-menu2 = apply(OptionMenu, (root, var2) + tuple(CHOICES))
+menu2 = OptionMenu(root, var2, *CHOICES)
menu2.pack()
root.mainloop()