1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

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

This commit is contained in:
Etherdaemon 2016-08-12 15:04:21 +10:00 committed by Brian Coca
parent b0c49c7141
commit 2e35d5716b

View file

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