1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Missed one place we were appending the incorrectly escaped item to raw params

This commit is contained in:
James Cammarata 2015-12-09 17:57:52 -05:00
parent 050c657524
commit 2b36343451

View file

@ -86,7 +86,7 @@ def parse_kv(args, check_raw=False):
# FIXME: make the retrieval of this list of shell/command # FIXME: make the retrieval of this list of shell/command
# options a function, so the list is centralized # options a function, so the list is centralized
if check_raw and k not in ('creates', 'removes', 'chdir', 'executable', 'warn'): if check_raw and k not in ('creates', 'removes', 'chdir', 'executable', 'warn'):
raw_params.append(x) raw_params.append(orig_x)
else: else:
options[k.strip()] = unquote(v.strip()) options[k.strip()] = unquote(v.strip())
else: else: