Remove camel_dict_to_snake_dict as this was breaking the module itself - the result is a list

pull/20764/merge
Etherdaemon 8 years ago committed by Brian Coca
parent b0c49c7141
commit 2e35d5716b

@ -147,7 +147,7 @@ def main():
results = get_nat_gateways(connection, module)
module.exit_json(result=camel_dict_to_snake_dict(results))
module.exit_json(result=results)
# import module snippets
from ansible.module_utils.basic import *

Loading…
Cancel
Save