1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-07-01 16:18:55 +00:00

Fix argument error in DCI (#43634)

This commit is contained in:
Nilashish Chakraborty 2018-08-03 19:02:26 +05:30 committed by Trishna Guha
parent 119376a685
commit 4a1d37a76b

View file

@ -395,7 +395,7 @@ def main():
want = map_params_to_obj(module)
have = map_config_to_obj(module)
commands = map_obj_to_commands((want, have), module)
commands = map_obj_to_commands((want, have))
result['commands'] = commands
if commands: