build: actually use SSL when downloading things via python (#28891)

Co-authored-by: Samuel Attard <samuel.r.attard@gmail.com>
This commit is contained in:
trop[bot]
2021-04-28 02:03:04 -07:00
committed by GitHub
parent c840550619
commit 882eb8a3ba

View File

@@ -69,9 +69,6 @@ def scoped_env(key, value):
def download(text, url, path):
safe_mkdir(os.path.dirname(path))
with open(path, 'wb') as local_file:
if hasattr(ssl, '_create_unverified_context'):
ssl._create_default_https_context = ssl._create_unverified_context
print("Downloading %s to %s" % (url, path))
web_file = urlopen(url)
info = web_file.info()