Commit eb10a7b9 authored by Guido van Rossum's avatar Guido van Rossum

Fix the exclusion of "config" in the methods copied from Pack to also

exclude "configure".
parent 0908e17b
......@@ -33,5 +33,5 @@ class ScrolledText(Text):
# Copy Pack methods of self.frame -- hack!
for m in Pack.__dict__.keys():
if m[0] != '_' and m != 'config':
if m[0] != '_' and m != 'config' and m != 'configure':
setattr(self, m, getattr(self.frame, m))
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