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

Add missing urlparse import to s3_bucket (#2110)

This was triggered when S3_URL environment variable was set.
This commit is contained in:
Ash Berlin 2016-05-10 16:00:13 +01:00 committed by Matt Clay
parent 814efc1418
commit bb42a6bcac

View file

@ -101,6 +101,7 @@ EXAMPLES = '''
''' '''
import xml.etree.ElementTree as ET import xml.etree.ElementTree as ET
import urlparse
try: try:
import boto.ec2 import boto.ec2