wrap: Slightly improve error message on wrap get failure
diff --git a/mesonbuild/wrap/wrap.py b/mesonbuild/wrap/wrap.py
index d99a618..862fd99 100644
--- a/mesonbuild/wrap/wrap.py
+++ b/mesonbuild/wrap/wrap.py
@@ -767,7 +767,7 @@
resp = urllib.request.urlopen(req, timeout=REQ_TIMEOUT)
except OSError as e:
mlog.log(str(e))
- raise WrapException(f'could not get {urlstring} is the internet available?')
+ raise WrapException(f'could not get {urlstring}; is the internet available?')
with contextlib.closing(resp) as resp, tmpfile as tmpfile:
try:
dlsize = int(resp.info()['Content-Length'])