diff options
Diffstat (limited to 'Tools/idle/PyShell.py')
-rw-r--r-- | Tools/idle/PyShell.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/idle/PyShell.py b/Tools/idle/PyShell.py index 64ef2d1..e01cad8 100644 --- a/Tools/idle/PyShell.py +++ b/Tools/idle/PyShell.py @@ -291,7 +291,7 @@ class PyShell(OutputWindow): __builtin__.quit = __builtin__.exit = "To exit, type Ctrl-D." self.auto = self.extensions["AutoIndent"] # Required extension - self.auto.config(prefertabs=1) + self.auto.config(usetabs=1, indentwidth=8) text = self.text text.configure(wrap="char") |