aboutsummaryrefslogtreecommitdiff
path: root/wrap.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2015-11-19 17:28:39 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2015-11-19 17:28:39 +0200
commit4522a3a9a53ef056d7c52a7cd74d1f4b1276f2e9 (patch)
treebd005e3fe2284aee921571cff9c00b41b24d5ac7 /wrap.py
parent16fa65730469dacbdb9374858c090fe59c1aa70c (diff)
downloadmeson-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.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/wrap.py b/wrap.py
index c6c730c..e01dfe8 100644
--- a/wrap.py
+++ b/wrap.py
@@ -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'])