Moving the import to the top of the file and getting rid of the redundancy

I sure do wish I knew where the whitespace change was coming from, though. Frustrating.
This commit is contained in:
Michael Laccetti 2015-03-02 20:12:54 -05:00 committed by Matt Clay
parent 0bd25a9a38
commit 8efb138fdc

View file

@ -125,6 +125,8 @@ import os
import urlparse
import hashlib
from boto.s3.connection import OrdinaryCallingFormat
try:
import boto
from boto.s3.connection import Location
@ -321,7 +323,6 @@ def main():
if is_fakes3(s3_url):
try:
fakes3 = urlparse.urlparse(s3_url)
from boto.s3.connection import OrdinaryCallingFormat
s3 = boto.connect_s3(
aws_access_key,
aws_secret_key,
@ -339,7 +340,6 @@ def main():
module.fail_json(msg = str(e))
else:
try:
from boto.s3.connection import OrdinaryCallingFormat
s3 = boto.s3.connect_to_region(location, aws_access_key_id=aws_access_key, aws_secret_access_key=aws_secret_key, is_secure=True, calling_format=OrdinaryCallingFormat())
except boto.exception.NoAuthHandlerFound, e:
module.fail_json(msg = str(e))