diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2015-11-19 17:28:39 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2015-11-19 17:28:39 +0200 |
commit | 4522a3a9a53ef056d7c52a7cd74d1f4b1276f2e9 (patch) | |
tree | bd005e3fe2284aee921571cff9c00b41b24d5ac7 /wrap.py | |
parent | 16fa65730469dacbdb9374858c090fe59c1aa70c (diff) | |
download | meson-4522a3a9a53ef056d7c52a7cd74d1f4b1276f2e9.zip meson-4522a3a9a53ef056d7c52a7cd74d1f4b1276f2e9.tar.gz meson-4522a3a9a53ef056d7c52a7cd74d1f4b1276f2e9.tar.bz2 |
Use plain http connections to wrapdb when ssl is not working (i.e. on OSX).
Diffstat (limited to 'wrap.py')
-rw-r--r-- | wrap.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -17,7 +17,7 @@ import urllib.request, os, hashlib, shutil import subprocess import sys -from wraptool import build_ssl_context +import wraptool class PackageDefinition: def __init__(self, fname): @@ -94,7 +94,7 @@ class Resolver: def get_data(self, url): blocksize = 10*1024 if url.startswith('https://wrapdb.mesonbuild.com'): - resp = urllib.request.urlopen(url, context=build_ssl_context()) + resp = wraptool.open_wrapdburl(url) else: resp = urllib.request.urlopen(url) dlsize = int(resp.info()['Content-Length']) |