diff options
author | Guido van Rossum <guido@python.org> | 1997-08-18 14:44:04 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-08-18 14:44:04 (GMT) |
commit | 9918e0c750d7a78dd913ba6b3224041176c4e015 (patch) | |
tree | d90e1f5f17cb44060552fc88316d2146f15c0dfb /Lib/lib-tk | |
parent | 79fa8b0abe5e5e114a5e655f60535adb88d0d642 (diff) | |
download | cpython-9918e0c750d7a78dd913ba6b3224041176c4e015.zip cpython-9918e0c750d7a78dd913ba6b3224041176c4e015.tar.gz cpython-9918e0c750d7a78dd913ba6b3224041176c4e015.tar.bz2 |
Add missing comma to make a tuple of (tagOrId).
Diffstat (limited to 'Lib/lib-tk')
-rw-r--r-- | Lib/lib-tk/Tkinter.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/lib-tk/Tkinter.py b/Lib/lib-tk/Tkinter.py index ddb017e..cecf107 100644 --- a/Lib/lib-tk/Tkinter.py +++ b/Lib/lib-tk/Tkinter.py @@ -1124,7 +1124,7 @@ class Canvas(Widget): if cnf is None and not kw: cnf = {} for x in self.tk.split( - self._do('itemconfigure', (tagOrId))): + self._do('itemconfigure', (tagOrId,))): cnf[x[0][1:]] = (x[0][1:],) + x[1:] return cnf if type(cnf) == StringType and not kw: |