diff options
author | Guido van Rossum <guido@python.org> | 2001-12-12 12:47:57 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-12-12 12:47:57 (GMT) |
commit | 1990943095b9fbb7cd7324a9cb36c4f757fd1288 (patch) | |
tree | 0adfe6086411666786e8c9eb7daf47f3c0400d37 /Lib | |
parent | 850d3980abde78908611ea007f3b59efef0d1357 (diff) | |
download | cpython-1990943095b9fbb7cd7324a9cb36c4f757fd1288.zip cpython-1990943095b9fbb7cd7324a9cb36c4f757fd1288.tar.gz cpython-1990943095b9fbb7cd7324a9cb36c4f757fd1288.tar.bz2 |
Fix for SF #491953 (Andrew Dalke): ScrolledText.py has TabError
Untabified.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/lib-tk/ScrolledText.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/lib-tk/ScrolledText.py b/Lib/lib-tk/ScrolledText.py index 5d92734..a14ae4d 100644 --- a/Lib/lib-tk/ScrolledText.py +++ b/Lib/lib-tk/ScrolledText.py @@ -34,9 +34,9 @@ class ScrolledText(Text): self.vbar['command'] = self.yview # Copy geometry methods of self.frame -- hack! - methods = Pack.__dict__.keys() - methods = methods + Grid.__dict__.keys() - methods = methods + Place.__dict__.keys() + methods = Pack.__dict__.keys() + methods = methods + Grid.__dict__.keys() + methods = methods + Place.__dict__.keys() for m in methods: if m[0] != '_' and m != 'config' and m != 'configure': |