Commit c5c4304d authored by Sviatoslav Sydorenko's avatar Sviatoslav Sydorenko

Convert path to str, which is needed under Py 2

parent a9ad5e3f
......@@ -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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment