]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Remove some more tab usage to prevent an error when run as ``python -tt``.
authorBrett Cannon <bcannon@gmail.com>
Sat, 5 Mar 2005 05:32:14 +0000 (05:32 +0000)
committerBrett Cannon <bcannon@gmail.com>
Sat, 5 Mar 2005 05:32:14 +0000 (05:32 +0000)
Lib/distutils/msvccompiler.py

index d2ea008e82abe96b32455c365266bcab732e18b4..8106df61777b78daba852631badd4fbef9b19b77 100644 (file)
@@ -385,7 +385,7 @@ class MSVCCompiler (CCompiler) :
                            debug=0,
                            target_lang=None):
 
-       if not self.initialized: self.initialize()
+        if not self.initialized: self.initialize()
         (objects, output_dir) = self._fix_object_args (objects, output_dir)
         output_filename = \
             self.library_filename (output_libname, output_dir=output_dir)
@@ -419,7 +419,7 @@ class MSVCCompiler (CCompiler) :
               build_temp=None,
               target_lang=None):
 
-       if not self.initialized: self.initialize()
+        if not self.initialized: self.initialize()
         (objects, output_dir) = self._fix_object_args (objects, output_dir)
         (libraries, library_dirs, runtime_library_dirs) = \
             self._fix_lib_args (libraries, library_dirs, runtime_library_dirs)