Commit 8f8ff1d8 authored by Jason R. Coombs's avatar Jason R. Coombs

Extract variable for simplicity of indentation.

parent 956dce0b
...@@ -181,9 +181,8 @@ class build_ext(_build_ext): ...@@ -181,9 +181,8 @@ class build_ext(_build_ext):
self.compiler = self.shlib_compiler self.compiler = self.shlib_compiler
_build_ext.build_extension(self, ext) _build_ext.build_extension(self, ext)
if ext._needs_stub: if ext._needs_stub:
self.write_stub( cmd = self.get_finalized_command('build_py').build_lib
self.get_finalized_command('build_py').build_lib, ext self.write_stub(cmd, ext)
)
finally: finally:
self.compiler = _compiler self.compiler = _compiler
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment