summaryrefslogtreecommitdiffstats
path: root/Lib/lib-tk/Tkinter.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2000-02-27 15:35:47 (GMT)
committerGuido van Rossum <guido@python.org>2000-02-27 15:35:47 (GMT)
commit0ba33002e1df4627901f3303574554f239789a1a (patch)
treefc445a9f680bc2a8f0bb5d12104eb1e1ed78d4dc /Lib/lib-tk/Tkinter.py
parentd28de23bda3a6badc23f7b693a5e6982eb4cc9db (diff)
downloadcpython-0ba33002e1df4627901f3303574554f239789a1a.zip
cpython-0ba33002e1df4627901f3303574554f239789a1a.tar.gz
cpython-0ba33002e1df4627901f3303574554f239789a1a.tar.bz2
Fix a typo in Barry's checkin.
Reported both by Gerrit Holl and Mark Favas.
Diffstat (limited to 'Lib/lib-tk/Tkinter.py')
-rw-r--r--Lib/lib-tk/Tkinter.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/lib-tk/Tkinter.py b/Lib/lib-tk/Tkinter.py
index a95bf42..9d0ea88 100644
--- a/Lib/lib-tk/Tkinter.py
+++ b/Lib/lib-tk/Tkinter.py
@@ -1810,7 +1810,7 @@ class OptionMenu(Menubutton):
self.menuname = menu._w
# 'command' is the only supported keyword
callback = kwargs.get('command')
- if kwargs.has_key('command')
+ if kwargs.has_key('command'):
del kwargs['command']
if kwargs:
raise TclError, 'unknown option -'+kwargs.keys()[0]