fix whitespace normalization before pushing.
diff --git a/Lib/lib2to3/main.py b/Lib/lib2to3/main.py
index 014238e..ad0625e 100644
--- a/Lib/lib2to3/main.py
+++ b/Lib/lib2to3/main.py
@@ -79,11 +79,11 @@
         if self._append_suffix:
             filename += self._append_suffix
         if orig_filename != filename:
-          output_dir = os.path.dirname(filename)
-          if not os.path.isdir(output_dir):
-              os.makedirs(output_dir)
-          self.log_message('Writing converted %s to %s.', orig_filename,
-                           filename)
+            output_dir = os.path.dirname(filename)
+            if not os.path.isdir(output_dir):
+                os.makedirs(output_dir)
+            self.log_message('Writing converted %s to %s.', orig_filename,
+                             filename)
         if not self.nobackups:
             # Make backup
             backup = filename + ".bak"