Commit a4a09fec by bradobro

AnsibleModule (in module_common.py) now correctly reads param values containing '='.

parent baf07659
......@@ -111,7 +111,7 @@ class AnsibleModule(object):
items = shlex.split(args)
params = {}
for x in items:
(k, v) = x.split("=")
(k, v) = x.split("=",1)
params[k] = v
return (params, args)
......
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