We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Read up here: boto/boto#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
The text was updated successfully, but these errors were encountered:
Fixed in 8ebcd33. Thanks!
Sorry, something went wrong.
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.
Successfully merging a pull request may close this issue.
Read up here: boto/boto#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
The text was updated successfully, but these errors were encountered: