diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2017-08-28 09:09:41 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-28 09:09:41 -0400 |
commit | 7e549f6eb72e37f50a1183e018ad2f3b2c952285 (patch) | |
tree | 1134f7d2387d27d2567d8af95be413fcc7cd485d /setuptools/config.py | |
parent | 3af152a26ee2ef889b8d7ab4428c975ba0c8e85b (diff) | |
download | external_python_setuptools-7e549f6eb72e37f50a1183e018ad2f3b2c952285.tar.gz external_python_setuptools-7e549f6eb72e37f50a1183e018ad2f3b2c952285.tar.bz2 external_python_setuptools-7e549f6eb72e37f50a1183e018ad2f3b2c952285.zip |
Correct typo
Diffstat (limited to 'setuptools/config.py')
-rw-r--r-- | setuptools/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/config.py b/setuptools/config.py index 2b156269..7ba02184 100644 --- a/setuptools/config.py +++ b/setuptools/config.py @@ -263,7 +263,7 @@ class ConfigHandler(object): filepaths = (os.path.abspath(path.strip()) for path in spec.split(',')) return '\n'.join( self._read_local_file(path) - for path in filepath + for path in filepaths if os.path.isfile(path) ) |