s3wipe
s3wipe copied to clipboard
Can't use buckets with . in them
Read up here: https://github.com/boto/boto/issues/2836
I fixed this by adding this in the headers:
import ssl if hasattr(ssl, '_create_unverified_context'): ssl._create_default_https_context = ssl._create_unverified_context
Fixed in 8ebcd33. Thanks!
Actually it turns out this broke the tool for 2.7 users. Reverting that commit for now until I can find a non-version specific fix.