summaryrefslogtreecommitdiffstats
path: root/Lib/tkinter
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-07-30 20:16:21 (GMT)
committerGuido van Rossum <guido@python.org>1996-07-30 20:16:21 (GMT)
commit9afdabffa9c54d3831182a73321b9edbde195736 (patch)
treee073d38b7ad780f8ea3eca6289626e294705df53 /Lib/tkinter
parent74faed299f0a469843189dd90f16370048bbc885 (diff)
downloadcpython-9afdabffa9c54d3831182a73321b9edbde195736.zip
cpython-9afdabffa9c54d3831182a73321b9edbde195736.tar.gz
cpython-9afdabffa9c54d3831182a73321b9edbde195736.tar.bz2
Add missing close parenthesis.
Diffstat (limited to 'Lib/tkinter')
-rwxr-xr-xLib/tkinter/Tkinter.py2
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]