fix inconsistent use of tabs and spaces

This commit is contained in:
Jeremy Hylton 2000-07-07 20:45:21 +00:00
parent bc30b11764
commit 65d6edb478
4 changed files with 24 additions and 24 deletions

View file

@ -370,12 +370,12 @@ class build_ext (Command):
ext_filename = os.path.join (self.build_lib,
self.get_ext_filename(fullname))
if not (self.force or newer_group(sources, ext_filename, 'newer')):
self.announce ("skipping '%s' extension (up-to-date)" %
if not (self.force or newer_group(sources, ext_filename, 'newer')):
self.announce ("skipping '%s' extension (up-to-date)" %
ext.name)
continue # 'for' loop over all extensions
else:
self.announce ("building '%s' extension" % ext.name)
continue # 'for' loop over all extensions
else:
self.announce ("building '%s' extension" % ext.name)
# First, scan the sources for SWIG definition files (.i), run
# SWIG on 'em to create .c files, and modify the sources list