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):