Commit 74d0b2bd authored by Łukasz Nowak's avatar Łukasz Nowak

Allow to have a=b=c, where a is key and b=c is value.

parent 034c2381
...@@ -259,7 +259,7 @@ class Script: ...@@ -259,7 +259,7 @@ class Script:
raise zc.buildout.UserError('Line %r in environment is incorrect' % raise zc.buildout.UserError('Line %r in environment is incorrect' %
line) line)
key, value = line.split('=') key, value = line.split('=', 1)
key = key.strip() key = key.strip()
value = value.strip() value = value.strip()
if key in wanted_env: if key in wanted_env:
......
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