Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 1990943

Browse files
committed
Fix for SF #491953 (Andrew Dalke): ScrolledText.py has TabError
Untabified.
1 parent 850d398 commit 1990943

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Lib/lib-tk/ScrolledText.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ def __init__(self, master=None, cnf=None, **kw):
3434
self.vbar['command'] = self.yview
3535

3636
# Copy geometry methods of self.frame -- hack!
37-
methods = Pack.__dict__.keys()
38-
methods = methods + Grid.__dict__.keys()
39-
methods = methods + Place.__dict__.keys()
37+
methods = Pack.__dict__.keys()
38+
methods = methods + Grid.__dict__.keys()
39+
methods = methods + Place.__dict__.keys()
4040

4141
for m in methods:
4242
if m[0] != '_' and m != 'config' and m != 'configure':

0 commit comments

Comments
 (0)