fixes return data structure (#22830)

The return was being re-written instead of updated so warnings were
lost.  This patch now updates the result instead of replacing it.
pull/22837/head
Peter Sprygada 8 years ago committed by Ricardo Carrillo Cruz
parent e7fd38af78
commit d6787632c9

@ -218,11 +218,11 @@ def main():
module.fail_json(msg=msg, failed_conditions=failed_conditions) module.fail_json(msg=msg, failed_conditions=failed_conditions)
result = { result.update({
'changed': False, 'changed': False,
'stdout': responses, 'stdout': responses,
'stdout_lines': list(to_lines(responses)) 'stdout_lines': list(to_lines(responses))
} })
module.exit_json(**result) module.exit_json(**result)

Loading…
Cancel
Save