diff options
author | Guido van Rossum <guido@python.org> | 1996-07-30 20:16:21 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-07-30 20:16:21 (GMT) |
commit | 9afdabffa9c54d3831182a73321b9edbde195736 (patch) | |
tree | e073d38b7ad780f8ea3eca6289626e294705df53 /Lib/tkinter | |
parent | 74faed299f0a469843189dd90f16370048bbc885 (diff) | |
download | cpython-9afdabffa9c54d3831182a73321b9edbde195736.zip cpython-9afdabffa9c54d3831182a73321b9edbde195736.tar.gz cpython-9afdabffa9c54d3831182a73321b9edbde195736.tar.bz2 |
Add missing close parenthesis.
Diffstat (limited to 'Lib/tkinter')
-rwxr-xr-x | Lib/tkinter/Tkinter.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/tkinter/Tkinter.py b/Lib/tkinter/Tkinter.py index 0cff594..e33c8c8 100755 --- a/Lib/tkinter/Tkinter.py +++ b/Lib/tkinter/Tkinter.py @@ -964,7 +964,7 @@ class Canvas(Widget): self._w, 'canvasy', screeny, gridspacing)) def coords(self, *args): return map(self.tk.getdouble, - self.tk.splitlist(self._do('coords', args)) + self.tk.splitlist(self._do('coords', args))) def _create(self, itemType, args, kw): # Args: (val, val, ..., cnf={}) args = _flatten(args) cnf = args[-1] |