diff options
author | Brett Cannon <bcannon@gmail.com> | 2005-03-05 05:32:14 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2005-03-05 05:32:14 (GMT) |
commit | 1bfd85b61263f3368167cb27cf477dfa106c6795 (patch) | |
tree | ee3373df59700328c3ef204b19f1b97405912045 /Lib/distutils | |
parent | 3304a14148a8ae3891bbf23b2985af57b42da440 (diff) | |
download | cpython-1bfd85b61263f3368167cb27cf477dfa106c6795.zip cpython-1bfd85b61263f3368167cb27cf477dfa106c6795.tar.gz cpython-1bfd85b61263f3368167cb27cf477dfa106c6795.tar.bz2 |
Remove some more tab usage to prevent an error when run as ``python -tt``.
Diffstat (limited to 'Lib/distutils')
-rw-r--r-- | Lib/distutils/msvccompiler.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/distutils/msvccompiler.py b/Lib/distutils/msvccompiler.py index d2ea008..8106df6 100644 --- a/Lib/distutils/msvccompiler.py +++ b/Lib/distutils/msvccompiler.py @@ -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) |