diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2000-07-07 20:45:21 (GMT) |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2000-07-07 20:45:21 (GMT) |
commit | 65d6edb478d8c649766c59c5ae186bf0d1e812e6 (patch) | |
tree | 57abda04efa17d981ec8ea679a725af5a1e057c9 /Lib/distutils/command | |
parent | bc30b117643a3bffb39ba3e93bba1beb493d1f37 (diff) | |
download | cpython-65d6edb478d8c649766c59c5ae186bf0d1e812e6.zip cpython-65d6edb478d8c649766c59c5ae186bf0d1e812e6.tar.gz cpython-65d6edb478d8c649766c59c5ae186bf0d1e812e6.tar.bz2 |
fix inconsistent use of tabs and spaces
Diffstat (limited to 'Lib/distutils/command')
-rw-r--r-- | Lib/distutils/command/build_ext.py | 10 | ||||
-rw-r--r-- | Lib/distutils/command/install_headers.py | 2 |
2 files changed, 6 insertions, 6 deletions
diff --git a/Lib/distutils/command/build_ext.py b/Lib/distutils/command/build_ext.py index 4b5aaab..6456ad4 100644 --- a/Lib/distutils/command/build_ext.py +++ b/Lib/distutils/command/build_ext.py @@ -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 diff --git a/Lib/distutils/command/install_headers.py b/Lib/distutils/command/install_headers.py index 991985b..2e6ce86 100644 --- a/Lib/distutils/command/install_headers.py +++ b/Lib/distutils/command/install_headers.py @@ -22,7 +22,7 @@ class install_headers (Command): def initialize_options (self): self.install_dir = None - self.outfiles = [] + self.outfiles = [] def finalize_options (self): self.set_undefined_options('install', |