diff options
author | Guido van Rossum <guido@python.org> | 1995-03-20 15:09:13 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-03-20 15:09:13 +0000 |
commit | 903abee9c4ee6205720db5a10a16d79e0386cd55 (patch) | |
tree | 1abf77663a6849d17854cea06509e86d12c85b2d /Lib/lib-tk/Tkinter.py | |
parent | b92112da0e867db8fcb3c326dfe07d6c2762524d (diff) | |
download | cpython-git-903abee9c4ee6205720db5a10a16d79e0386cd55.tar.gz |
fix typo in tag_nextrange
Diffstat (limited to 'Lib/lib-tk/Tkinter.py')
-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 0af4bce3a4..2e3ff89712 100644 --- a/Lib/lib-tk/Tkinter.py +++ b/Lib/lib-tk/Tkinter.py @@ -1116,7 +1116,7 @@ class Text(Widget): self.tk.call(self._w, 'tag', 'names', index)) def tag_nextrange(self, tagName, index1, index2=None): return self.tk.splitlist(self.tk.call( - self._w, 'tag', 'nextrange', index1, index2)) + self._w, 'tag', 'nextrange', tagName, index1, index2)) def tag_raise(self, tagName, aboveThis=None): self.tk.call( self._w, 'tag', 'raise', tagName, aboveThis) |