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
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: