X-Git-Url: http://git.vrable.net/?p=cumulus.git;a=blobdiff_plain;f=python%2Fcumulus%2Fstore%2Fs3.py;h=489858372d86b502d16495d1e18d81b745202696;hp=7d8aaafff070d3603dbb3fd26d724923d6c3c455;hb=a5f66616b1ec0c38328ad5131bf1c889ccc43659;hpb=5b69b1ec0eeba473dfd2c40de41075a49a147e93 diff --git a/python/cumulus/store/s3.py b/python/cumulus/store/s3.py index 7d8aaaf..4898583 100644 --- a/python/cumulus/store/s3.py +++ b/python/cumulus/store/s3.py @@ -33,7 +33,7 @@ def throw_notfound(method): return method(*args, **kwargs) except S3ResponseError as e: if e.status == 404: - print "Got a 404:", e + print("Got a 404:", e) raise cumulus.store.NotFoundError(e) else: raise