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

fixed boto.ec2 import

alternative to #15224 and fixes #11755
This commit is contained in:
Brian Coca 2016-04-18 10:34:44 -04:00
parent 3c3061378b
commit 621b98668f

View file

@ -31,6 +31,7 @@ from time import sleep
try:
import boto
import boto.ec2 #boto does weird import stuff
HAS_BOTO = True
except ImportError:
HAS_BOTO = False