aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/command/install_lib.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2014-03-13 22:48:41 -0400
committerJason R. Coombs <jaraco@jaraco.com>2014-03-13 22:48:41 -0400
commit4ca7386a58ba92c5c89d0872933384f7d1fea115 (patch)
tree2456769b89d4a5b72be70bb26be4f47f440eb7bb /setuptools/command/install_lib.py
parent8dfa58696aff81a6fa7ab2d10d859610711fdb49 (diff)
downloadexternal_python_setuptools-4ca7386a58ba92c5c89d0872933384f7d1fea115.tar.gz
external_python_setuptools-4ca7386a58ba92c5c89d0872933384f7d1fea115.tar.bz2
external_python_setuptools-4ca7386a58ba92c5c89d0872933384f7d1fea115.zip
Reindent and remove excess whitespace
Diffstat (limited to 'setuptools/command/install_lib.py')
-rw-r--r--setuptools/command/install_lib.py13
1 files changed, 3 insertions, 10 deletions
diff --git a/setuptools/command/install_lib.py b/setuptools/command/install_lib.py
index c508cd33..63dc11fe 100644
--- a/setuptools/command/install_lib.py
+++ b/setuptools/command/install_lib.py
@@ -14,10 +14,9 @@ class install_lib(_install_lib):
def get_exclusions(self):
exclude = {}
nsp = self.distribution.namespace_packages
-
- if (nsp and self.get_finalized_command('install')
- .single_version_externally_managed
- ):
+ svem = (nsp and self.get_finalized_command('install')
+ .single_version_externally_managed)
+ if svem:
for pkg in nsp:
parts = pkg.split('.')
while parts:
@@ -62,9 +61,3 @@ class install_lib(_install_lib):
if exclude:
return [f for f in outputs if f not in exclude]
return outputs
-
-
-
-
-
-