summaryrefslogtreecommitdiff
path: root/ci/download_gha_artifacts.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2021-12-31 09:17:07 -0500
committerNed Batchelder <ned@nedbatchelder.com>2021-12-31 09:17:07 -0500
commit4d38f23251046ec48a73cd1db5773a68d58130e5 (patch)
tree882dee1ba4d7811dd006cf7fad81835d978a05e2 /ci/download_gha_artifacts.py
parentc2773105682ee01b5ebfe5d29e86a9634d02b053 (diff)
downloadpython-coveragepy-git-nedbat/drop-36.tar.gz
build: drop Python 3.6 supportnedbat/drop-36
Diffstat (limited to 'ci/download_gha_artifacts.py')
-rw-r--r--ci/download_gha_artifacts.py2
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."""