Allow "=" in k-v values.

pull/603/head
Matt Goodall 12 years ago
parent f8abf67ebe
commit 639763c138

@ -295,7 +295,7 @@ def parse_kv(args):
vargs = shlex.split(args, posix=True)
for x in vargs:
if x.find("=") != -1:
k, v = x.split("=")
k, v = x.split("=", 1)
options[k]=v
return options

@ -235,3 +235,10 @@ class TestUtils(unittest.TestCase):
res = ansible.utils.template(template, vars, {}, no_engine=False)
assert res == u'hello wórld'
#####################################
### key-value parsing
def test_parse_kv_basic(self):
assert (ansible.utils.parse_kv('a=simple b="with space" c="this=that"') ==
{'a': 'simple', 'b': 'with space', 'c': 'this=that'})

Loading…
Cancel
Save