From 79ea5532003ac0c1d5010020cbeb44329f24ded5 Mon Sep 17 00:00:00 2001 From: Allen Sanabria Date: Fri, 8 Apr 2016 17:39:32 -0700 Subject: [PATCH] Module requires boto due to ec2.py --- cloud/amazon/ec2_vpc_nat_gateway.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cloud/amazon/ec2_vpc_nat_gateway.py b/cloud/amazon/ec2_vpc_nat_gateway.py index 3d11e372463..46b75ce3090 100644 --- a/cloud/amazon/ec2_vpc_nat_gateway.py +++ b/cloud/amazon/ec2_vpc_nat_gateway.py @@ -205,6 +205,7 @@ nat_gateway_addresses: try: import botocore import boto3 + import boto HAS_BOTO3 = True except ImportError: HAS_BOTO3 = False