From 8408c6b4542dcb5fd2080630c28b72528fa85dfd Mon Sep 17 00:00:00 2001 From: higginsd Date: Tue, 2 May 2017 10:42:43 -0500 Subject: [PATCH] fixed missing "import traceback" (#23427) --- lib/ansible/modules/cloud/amazon/ec2_vpc_vgw_facts.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/ansible/modules/cloud/amazon/ec2_vpc_vgw_facts.py b/lib/ansible/modules/cloud/amazon/ec2_vpc_vgw_facts.py index 176aab37244..48b7bd3f6b1 100644 --- a/lib/ansible/modules/cloud/amazon/ec2_vpc_vgw_facts.py +++ b/lib/ansible/modules/cloud/amazon/ec2_vpc_vgw_facts.py @@ -111,6 +111,7 @@ try: except ImportError: pass # will be captured by imported HAS_BOTO3 +import traceback def get_virtual_gateway_info(virtual_gateway): virtual_gateway_info = {'VpnGatewayId': virtual_gateway['VpnGatewayId'],