commit | bdd901714d5c1e5e2012d91f87633845cc270be5 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Wed Sep 20 00:17:39 2000 +0000 |
committer | Guido van Rossum <guido@python.org> | Wed Sep 20 00:17:39 2000 +0000 |
tree | 15083a5c5327ec6d3248ea539f545a79acad5436 | |
parent | 9c0ea13ece57d3c5f518e5b1d0d75cc83a7a1c38 [diff] [blame] |
Fix typo (newtabwith).
diff --git a/Tools/idle/EditorWindow.py b/Tools/idle/EditorWindow.py index d744a2e..5feda4b 100644 --- a/Tools/idle/EditorWindow.py +++ b/Tools/idle/EditorWindow.py
@@ -674,7 +674,7 @@ if self.get_tabwidth() != newtabwidth: pixels = text.tk.call("font", "measure", text["font"], "-displayof", text.master, - "n" * newtabwith) + "n" * newtabwidth) text.configure(tabs=pixels) def prepstr(s):