From 7ab342a1ed684563ee7742fc3f7fd04fac5b7fc2 Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Fri, 6 Mar 2015 23:35:27 -0500 Subject: Remove excess indent --- setuptools/command/easy_install.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'setuptools/command/easy_install.py') 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: -- cgit v1.2.3