From df1bd4e17a082b9b634f62d799807a18e526a7c0 Mon Sep 17 00:00:00 2001 From: stepshal Date: Wed, 19 Oct 2016 00:10:40 +0700 Subject: Fix spacing after comment hash. --- setuptools/dist.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'setuptools/dist.py') diff --git a/setuptools/dist.py b/setuptools/dist.py index 364f2b4d..367c26ea 100644 --- a/setuptools/dist.py +++ b/setuptools/dist.py @@ -412,7 +412,7 @@ class Distribution(_Distribution): ) for key in list(opts): if key not in keep: - del opts[key] # don't use any other settings + del opts[key] # don't use any other settings if self.dependency_links: links = self.dependency_links[:] if 'find_links' in opts: @@ -650,7 +650,7 @@ class Distribution(_Distribution): aliases = self.get_option_dict('aliases') while command in aliases: src, alias = aliases[command] - del aliases[command] # ensure each alias can expand only once! + del aliases[command] # ensure each alias can expand only once! import shlex args[:1] = shlex.split(alias, True) command = args[0] -- cgit v1.2.1