Skip to content

Commit 22bc4e4

Browse files
author
bcannon
committed
Remove some more tab usage to prevent an error when run as python -tt.
git-svn-id: http://svn.python.org/projects/python/trunk@38577 6015fed2-1504-0410-9fe1-9d1591cc4771
1 parent b0a58fe commit 22bc4e4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Lib/distutils/msvccompiler.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ def create_static_lib (self,
385385
debug=0,
386386
target_lang=None):
387387

388-
if not self.initialized: self.initialize()
388+
if not self.initialized: self.initialize()
389389
(objects, output_dir) = self._fix_object_args (objects, output_dir)
390390
output_filename = \
391391
self.library_filename (output_libname, output_dir=output_dir)
@@ -419,7 +419,7 @@ def link (self,
419419
build_temp=None,
420420
target_lang=None):
421421

422-
if not self.initialized: self.initialize()
422+
if not self.initialized: self.initialize()
423423
(objects, output_dir) = self._fix_object_args (objects, output_dir)
424424
(libraries, library_dirs, runtime_library_dirs) = \
425425
self._fix_lib_args (libraries, library_dirs, runtime_library_dirs)

0 commit comments

Comments
 (0)