Commit 5221018f authored by Sebastien Robin's avatar Sebastien Robin

we need a list instead of listreverseiterator because we use it several times

parent 3b1d584b
......@@ -274,7 +274,7 @@ initialization =
import Zope2
os.environ['SOFTWARE_HOME'] = os.path.abspath(os.path.dirname(os.path.dirname(Zope2.__file__)))
os.environ['ZOPE_SCRIPTS'] = ''
repository_id_list = reversed('''${erp5_repository_list:repository_id_list}'''.split())
repository_id_list = list(reversed('''${erp5_repository_list:repository_id_list}'''.split()))
sys.path[0:0] = ['/'.join(['''${buildout:parts-directory}''', x]) for x in repository_id_list.split()]
[instance-recipe-egg]
......
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