Skip to content

Commit

Permalink
Fix bug where basedirlist was treated as a single string
Browse files Browse the repository at this point in the history
  • Loading branch information
mdboom committed Apr 1, 2013
1 parent 8605579 commit 571e7e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.cfg.template
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

[directories]
# Uncomment to override the default basedir in setupext.py.
# This can be a single directory or a space-delimited list of directories.
# This can be a single directory or a comma-delimited list of directories.
#basedirlist = /usr

[status]
Expand Down
2 changes: 1 addition & 1 deletion setupext.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def check_output(*popenargs, **kwargs):
pass

try:
options['basedirlist'] = config.get("directories", "basedirlist")
options['basedirlist'] = config.get("directories", "basedirlist").split(',')
except:
pass
else:
Expand Down

0 comments on commit 571e7e0

Please sign in to comment.