Commit a556671f authored by Rafael Monnerat's avatar Rafael Monnerat

Support comma and newline format. buildot configuration files use new line

style.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@33343 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 1baea6a3
......@@ -91,7 +91,9 @@ if default_site_preference.getPreferenceState() == 'disabled':
# install our business templates
bt5_list = []
bt5_path_list = options.bt5_path.split(',')
bt5_path_list = []
for i in options.bt5_path.split('\n'):
bt5_path_list.extend(i.split(","))
for arg in args:
bt_path = None
......
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