summaryrefslogtreecommitdiff
path: root/setuptools/command/build_ext.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2014-12-23 10:06:44 -0500
committerJason R. Coombs <jaraco@jaraco.com>2014-12-23 10:06:44 -0500
commit0b538cb95cbaf496897fcffb3c67a217d56f2511 (patch)
tree489224686a1be0f1c2b9a06f5cc1f766edad4375 /setuptools/command/build_ext.py
parent7fe63f7e3e848af843baa909930c1a61dcc2fbdd (diff)
downloadpython-setuptools-git-0b538cb95cbaf496897fcffb3c67a217d56f2511.tar.gz
Reindent
Diffstat (limited to 'setuptools/command/build_ext.py')
-rw-r--r--setuptools/command/build_ext.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/setuptools/command/build_ext.py b/setuptools/command/build_ext.py
index 5327a030..414ad166 100644
--- a/setuptools/command/build_ext.py
+++ b/setuptools/command/build_ext.py
@@ -200,11 +200,11 @@ class build_ext(_build_ext):
optimize = self.get_finalized_command('build_py').optimize
ns_ext = (ext for ext in self.extensions if ext._needs_stub)
for ext in ns_ext:
- base = os.path.join(self.build_lib, *ext._full_name.split('.'))
- outputs.append(base + '.py')
- outputs.append(base + '.pyc')
- if optimize:
- outputs.append(base + '.pyo')
+ base = os.path.join(self.build_lib, *ext._full_name.split('.'))
+ outputs.append(base + '.py')
+ outputs.append(base + '.pyc')
+ if optimize:
+ outputs.append(base + '.pyo')
return outputs
def write_stub(self, output_dir, ext, compile=False):