diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2013-05-03 10:45:40 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2013-05-03 10:45:40 -0400 |
commit | 50b64464287ccf146d3efddf79951930069e8c9f (patch) | |
tree | 47ce310f4b7308337c8920df148046ad6af055e2 /setuptools/command/easy_install.py | |
parent | 7784a0f3c8a6e544aad1bc70a4d05d8961d21c7c (diff) | |
download | python-setuptools-bitbucket-50b64464287ccf146d3efddf79951930069e8c9f.tar.gz |
easy_install once again honors setup.cfg if found in the current directory
Diffstat (limited to 'setuptools/command/easy_install.py')
-rwxr-xr-x | setuptools/command/easy_install.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py index 655478b3..47c1a3d8 100755 --- a/setuptools/command/easy_install.py +++ b/setuptools/command/easy_install.py @@ -1925,12 +1925,6 @@ usage: %(script)s [options] requirement_or_url ... def _show_help(self,*args,**kw): with_ei_usage(lambda: Distribution._show_help(self,*args,**kw)) - def find_config_files(self): - files = Distribution.find_config_files(self) - if 'setup.cfg' in files: - files.remove('setup.cfg') - return files - if argv is None: argv = sys.argv[1:] |