summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2014-09-26 10:43:43 -0400
committerJason R. Coombs <jaraco@jaraco.com>2014-09-26 10:43:43 -0400
commit856231494f5b5df2b105c7275221c6ef17ddaa6d (patch)
tree46702ae3e8237bb7f318b0e0426152d5c12aafcc
parent8cd78274dad7baaba5720b4b9de56e7d9b7a2508 (diff)
downloadpython-setuptools-bitbucket-856231494f5b5df2b105c7275221c6ef17ddaa6d.tar.gz
Reindent
-rw-r--r--setuptools/command/install_lib.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/command/install_lib.py b/setuptools/command/install_lib.py
index 7f157a0f..371a9e72 100644
--- a/setuptools/command/install_lib.py
+++ b/setuptools/command/install_lib.py
@@ -24,8 +24,8 @@ class install_lib(orig.install_lib):
for pkg in self._all_packages(ns_pkg)
)
for pkg in all_packages:
- for f in self._gen_exclude_names():
- exclude.add(os.path.join(pkg_path(pkg), f))
+ for f in self._gen_exclude_names():
+ exclude.add(os.path.join(pkg_path(pkg), f))
return exclude
@staticmethod