aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/command/easy_install.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2015-03-06 23:35:27 -0500
committerJason R. Coombs <jaraco@jaraco.com>2015-03-06 23:35:27 -0500
commit7ab342a1ed684563ee7742fc3f7fd04fac5b7fc2 (patch)
treeb97f16298b1a20299598b697f84233eddaa67f54 /setuptools/command/easy_install.py
parentf9fd181f25d50bd149c715c7ac52827da34d0e59 (diff)
downloadexternal_python_setuptools-7ab342a1ed684563ee7742fc3f7fd04fac5b7fc2.tar.gz
external_python_setuptools-7ab342a1ed684563ee7742fc3f7fd04fac5b7fc2.tar.bz2
external_python_setuptools-7ab342a1ed684563ee7742fc3f7fd04fac5b7fc2.zip
Remove excess indent
Diffstat (limited to 'setuptools/command/easy_install.py')
-rwxr-xr-xsetuptools/command/easy_install.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py
index 01c67ccc..7dbbc878 100755
--- a/setuptools/command/easy_install.py
+++ b/setuptools/command/easy_install.py
@@ -207,13 +207,13 @@ class easy_install(Command):
list(map(self._delete_filename, extant_blockers))
def _delete_filename(self, filename):
- log.info("Deleting %s", filename)
- if not self.dry_run:
- if (os.path.isdir(filename) and
- not os.path.islink(filename)):
- rmtree(filename)
- else:
- os.unlink(filename)
+ log.info("Deleting %s", filename)
+ if not self.dry_run:
+ if (os.path.isdir(filename) and
+ not os.path.islink(filename)):
+ rmtree(filename)
+ else:
+ os.unlink(filename)
def finalize_options(self):
if self.version: