aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/config.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2017-08-28 09:09:41 -0400
committerGitHub <noreply@github.com>2017-08-28 09:09:41 -0400
commit7e549f6eb72e37f50a1183e018ad2f3b2c952285 (patch)
tree1134f7d2387d27d2567d8af95be413fcc7cd485d /setuptools/config.py
parent3af152a26ee2ef889b8d7ab4428c975ba0c8e85b (diff)
downloadexternal_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.py2
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)
)