Commit 55f4a1af authored by Guido van Rossum's avatar Guido van Rossum

Fix for SF #491953 (Andrew Dalke): ScrolledText.py has TabError

Untabified.
parent 13897c68
......@@ -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':
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment