From: Guido van Rossum Date: Wed, 20 Sep 2000 00:17:39 +0000 (+0000) Subject: Fix typo (newtabwith). X-Git-Tag: v2.0b2~185 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bdd901714d5c1e5e2012d91f87633845cc270be5;p=thirdparty%2FPython%2Fcpython.git Fix typo (newtabwith). --- diff --git a/Tools/idle/EditorWindow.py b/Tools/idle/EditorWindow.py index d744a2e386cf..5feda4b72526 100644 --- a/Tools/idle/EditorWindow.py +++ b/Tools/idle/EditorWindow.py @@ -674,7 +674,7 @@ class EditorWindow: 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):