aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2020-07-26 10:43:08 -0400
committerJason R. Coombs <jaraco@jaraco.com>2020-07-26 10:43:08 -0400
commit268ef5f553f29977f708c256ee398c9e29cb4da7 (patch)
tree20af33f93edce4c94c4c2a3ac22d3cccebefb4b0
parentf3b177e9c2b77104ddebaec7b581e2aee73a1184 (diff)
downloadexternal_python_setuptools-268ef5f553f29977f708c256ee398c9e29cb4da7.tar.gz
external_python_setuptools-268ef5f553f29977f708c256ee398c9e29cb4da7.tar.bz2
external_python_setuptools-268ef5f553f29977f708c256ee398c9e29cb4da7.zip
Remove hanging indent
-rwxr-xr-xsetup.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 45ddb149..6290a746 100755
--- a/setup.py
+++ b/setup.py
@@ -106,8 +106,10 @@ class install_with_pth(install):
install.finalize_options(self)
# undo secondary effect of `extra_path` adding to `install_lib`
- install_suffix = os.path.relpath(self.install_lib,
- self.install_libbase)
+ install_suffix = os.path.relpath(
+ self.install_lib,
+ self.install_libbase,
+ )
if install_suffix == self._pth_contents:
self.install_lib = self.install_libbase