Whitespace Normalization
diff --git a/Lib/idlelib/ScriptBinding.py b/Lib/idlelib/ScriptBinding.py
index 8ab8e7a..0140c69 100644
--- a/Lib/idlelib/ScriptBinding.py
+++ b/Lib/idlelib/ScriptBinding.py
@@ -99,7 +99,7 @@
             self.errorbox("Syntax error",
                           "There's an error in your program:\n" + msg)
             return False
-        
+
     def colorize_syntax_error(self, msg, lineno, offset):
         text = self.editwin.text
         pos = "0.0 + %d lines + %d chars" % (lineno-1, offset-1)
@@ -112,7 +112,7 @@
         else:
             text.mark_set("insert", pos + "+1c")
         text.see(pos)
-        
+
     def run_script_event(self, event):
         "Check syntax, if ok run the script in the shell top level"
         filename = self.getfilename()