diff options
author | Benoit Pierre <benoit.pierre@gmail.com> | 2019-06-26 22:25:03 +0200 |
---|---|---|
committer | Benoit Pierre <benoit.pierre@gmail.com> | 2019-10-07 23:19:23 +0200 |
commit | cb8769d7d1a694d37194c44b98c543b2d5d38fc5 (patch) | |
tree | 997d24e252da887c7cd69a683cfd208acade998b /setuptools/command/easy_install.py | |
parent | 734d09c5a3f48338b6a3d7687c5f9d0ed02ab479 (diff) | |
download | python-setuptools-git-cb8769d7d1a694d37194c44b98c543b2d5d38fc5.tar.gz |
minor cleanup
Diffstat (limited to 'setuptools/command/easy_install.py')
-rw-r--r-- | setuptools/command/easy_install.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py index 06c98271..d7b7566c 100644 --- a/setuptools/command/easy_install.py +++ b/setuptools/command/easy_install.py @@ -1180,8 +1180,7 @@ class easy_install(Command): # to the setup.cfg file. ei_opts = self.distribution.get_option_dict('easy_install').copy() fetch_directives = ( - 'find_links', 'site_dirs', 'index_url', 'optimize', - 'site_dirs', 'allow_hosts', + 'find_links', 'site_dirs', 'index_url', 'optimize', 'allow_hosts', ) fetch_options = {} for key, val in ei_opts.items(): |