diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2017-08-28 09:13:37 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-28 09:13:37 -0400 |
commit | 3c25384fce3f6134a342ab32b7afc54cc6066fa3 (patch) | |
tree | f08561e411a6c517fa85d2d8e73d409e3c316d84 /setuptools/config.py | |
parent | 7e549f6eb72e37f50a1183e018ad2f3b2c952285 (diff) | |
download | external_python_setuptools-3c25384fce3f6134a342ab32b7afc54cc6066fa3.tar.gz external_python_setuptools-3c25384fce3f6134a342ab32b7afc54cc6066fa3.tar.bz2 external_python_setuptools-3c25384fce3f6134a342ab32b7afc54cc6066fa3.zip |
Use proper reference.
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 7ba02184..75f829fb 100644 --- a/setuptools/config.py +++ b/setuptools/config.py @@ -262,7 +262,7 @@ class ConfigHandler(object): spec = value[len(include_directive):] filepaths = (os.path.abspath(path.strip()) for path in spec.split(',')) return '\n'.join( - self._read_local_file(path) + cls._read_local_file(path) for path in filepaths if os.path.isfile(path) ) |