Commit 4ca7386a authored by Jason R. Coombs's avatar Jason R. Coombs

Reindent and remove excess whitespace

parent 8dfa5869
...@@ -14,10 +14,9 @@ class install_lib(_install_lib): ...@@ -14,10 +14,9 @@ class install_lib(_install_lib):
def get_exclusions(self): def get_exclusions(self):
exclude = {} exclude = {}
nsp = self.distribution.namespace_packages nsp = self.distribution.namespace_packages
svem = (nsp and self.get_finalized_command('install')
if (nsp and self.get_finalized_command('install') .single_version_externally_managed)
.single_version_externally_managed if svem:
):
for pkg in nsp: for pkg in nsp:
parts = pkg.split('.') parts = pkg.split('.')
while parts: while parts:
...@@ -62,9 +61,3 @@ class install_lib(_install_lib): ...@@ -62,9 +61,3 @@ class install_lib(_install_lib):
if exclude: if exclude:
return [f for f in outputs if f not in exclude] return [f for f in outputs if f not in exclude]
return outputs return outputs
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