aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/config.py
diff options
context:
space:
mode:
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)