We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 571e7e0 commit 31c880fCopy full SHA for 31c880f
setupext.py
@@ -77,7 +77,9 @@ def check_output(*popenargs, **kwargs):
77
pass
78
79
try:
80
- options['basedirlist'] = config.get("directories", "basedirlist").split(',')
+ options['basedirlist'] = [
81
+ x.strip() for x in
82
+ config.get("directories", "basedirlist").split(',')]
83
except:
84
85
else:
0 commit comments