From 0228f741c31c4352e2eff5d3ccb538114c22dd1a Mon Sep 17 00:00:00 2001 From: "Ryan S. Brown" Date: Fri, 30 Dec 2016 10:42:33 -0500 Subject: [PATCH] Undo format changes --- lib/ansible/module_utils/ec2.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/ansible/module_utils/ec2.py b/lib/ansible/module_utils/ec2.py index e8afab6751d..4c93221e176 100755 --- a/lib/ansible/module_utils/ec2.py +++ b/lib/ansible/module_utils/ec2.py @@ -327,6 +327,7 @@ def camel_dict_to_snake_dict(camel_dict): return all_cap_re.sub(r'\1_\2', s1).lower() + def value_is_list(camel_list): checked_list = [] @@ -340,6 +341,7 @@ def camel_dict_to_snake_dict(camel_dict): return checked_list + snake_dict = {} for k, v in camel_dict.items(): if isinstance(v, dict): @@ -462,6 +464,7 @@ def get_ec2_security_group_ids_from_names(sec_group_list, ec2_connection, vpc_id else: return sg.name + def get_sg_id(sg, boto3): if boto3: