diff options
Diffstat (limited to 'ci/download_gha_artifacts.py')
-rw-r--r-- | ci/download_gha_artifacts.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/download_gha_artifacts.py b/ci/download_gha_artifacts.py index 7828d3f8..df22c688 100644 --- a/ci/download_gha_artifacts.py +++ b/ci/download_gha_artifacts.py @@ -21,7 +21,7 @@ def download_url(url, filename): for chunk in response.iter_content(16*1024): f.write(chunk) else: - raise Exception(f"Fetching {url} produced: {response.status_code=}") + raise Exception(f"Fetching {url} produced: status={response.status_code}") def unpack_zipfile(filename): """Unpack a zipfile, using the names in the zip.""" |