Skip to content

Commit

Permalink
bugfix py3
Browse files Browse the repository at this point in the history
  • Loading branch information
eryckson committed Mar 28, 2014
1 parent 393fc33 commit 368a087
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ajaxuploader/views/s3.py
Expand Up @@ -13,7 +13,7 @@
from boto.s3.connection import Key, S3Connection
boto.set_stream_logger('boto')
S3 = S3Connection(settings.AWS_UPLOAD_CLIENT_KEY, settings.AWS_UPLOAD_CLIENT_SECRET_KEY)
except ImportError, e:
except ImportError as e:
print("Could not import boto, the Amazon SDK for Python.")
print("Deleting files will not work.")
print("Install boto with")
Expand Down

0 comments on commit 368a087

Please sign in to comment.