Remove ':' which 'breaks' the URL displayed

This commit is contained in:
Emmanuel Engelhart 2025-05-31 12:31:40 +02:00
parent f502c9b104
commit cb325a3894
No known key found for this signature in database
GPG Key ID: 120B30D020B553D3
1 changed files with 1 additions and 1 deletions

View File

@ -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: