aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/config.py
diff options
context:
space:
mode:
authorSviatoslav Sydorenko <wk@sydorenko.org.ua>2017-08-28 10:39:29 +0300
committerSviatoslav Sydorenko <wk@sydorenko.org.ua>2017-08-28 10:39:29 +0300
commitc5c4304d8c60b6f985c8c7607f6950d31d1b2e33 (patch)
treebcbc1fa858cfbe7704fc08ae19cf09efc3d7b2d9 /setuptools/config.py
parenta9ad5e3fc1e5d5eaa54182129e4245e947c02065 (diff)
downloadexternal_python_setuptools-c5c4304d8c60b6f985c8c7607f6950d31d1b2e33.tar.gz
external_python_setuptools-c5c4304d8c60b6f985c8c7607f6950d31d1b2e33.tar.bz2
external_python_setuptools-c5c4304d8c60b6f985c8c7607f6950d31d1b2e33.zip
Convert path to str, which is needed under Py 2
Diffstat (limited to 'setuptools/config.py')
-rw-r--r--setuptools/config.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/setuptools/config.py b/setuptools/config.py
index b6627c80..6fa50d20 100644
--- a/setuptools/config.py
+++ b/setuptools/config.py
@@ -262,6 +262,7 @@ class ConfigHandler(object):
filepaths = value[len(include_directive):]
filepaths = filepaths.split(',')
+ filepaths = map(str, filepaths) # Needed for Python 2
filepaths = map(str.strip, filepaths)
filepaths = map(os.path.abspath, filepaths)