aboutsummaryrefslogtreecommitdiff
path: root/wrap.py
diff options
context:
space:
mode:
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'])