From cb325a38941382e11a30aad0f09a2cec39d99354 Mon Sep 17 00:00:00 2001 From: Emmanuel Engelhart Date: Sat, 31 May 2025 12:31:40 +0200 Subject: [PATCH] Remove ':' which 'breaks' the URL displayed --- kiwixbuild/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kiwixbuild/utils.py b/kiwixbuild/utils.py index 2db5c09..0de3a43 100644 --- a/kiwixbuild/utils.py +++ b/kiwixbuild/utils.py @@ -184,7 +184,7 @@ def download_remote(what, where): current = (current + 1) % 4 file.write(batch) except urllib.error.URLError as e: - print("Cannot download url {}:\n{}".format(what.url, e.reason)) + print("Cannot download URL {}\n{}".format(what.url, e.reason)) raise StopBuild() if not what.sha256: