mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Make debug print things nicer if {{ foo }} didn't interpolate
This commit is contained in:
parent
06b988e2d5
commit
7037023aa8
1 changed files with 6 additions and 1 deletions
|
@ -32,7 +32,12 @@ class ActionModule(object):
|
|||
args = {}
|
||||
if complex_args:
|
||||
args.update(complex_args)
|
||||
args.update(utils.parse_kv(module_args))
|
||||
|
||||
# attempt to prevent confusing messages when the variable didn't interpolate
|
||||
module_args = module_args.replace("{{ ","{{").replace(" }}","}}")
|
||||
|
||||
kv = utils.parse_kv(module_args)
|
||||
args.update(kv)
|
||||
if not 'msg' in args:
|
||||
args['msg'] = 'Hello world!'
|
||||
|
||||
|
|
Loading…
Reference in a new issue