summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2022-06-22 16:02:57 +0200
committerFlorian Bruhin <me@the-compiler.org>2022-06-22 16:04:52 +0200
commitf911ffd55c939b15a883f682ef52ac5613be9e08 (patch)
tree266794515de6f7da47f8327874fd9a39dc67d6bf
parent1ee0152249983b08d66d171aa7222e61adeb507a (diff)
downloadqutebrowser-f911ffd55c939b15a883f682ef52ac5613be9e08.tar.gz
qutebrowser-f911ffd55c939b15a883f682ef52ac5613be9e08.zip
build-release: Fix f-string, take 2
(cherry picked from commit 52d98ad9aa2defc1d5ae42c65e4c6e5828e5ed35)
-rwxr-xr-xscripts/dev/build_release.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/dev/build_release.py b/scripts/dev/build_release.py
index 417180f24..7b35e0cbe 100755
--- a/scripts/dev/build_release.py
+++ b/scripts/dev/build_release.py
@@ -627,7 +627,7 @@ def github_upload(artifacts: List[Artifact], tag: str, gh_token: str) -> None:
for artifact in artifacts:
while True:
- print(f"Uploading {path}")
+ print(f"Uploading {artifact.path}")
assets = [asset for asset in release.assets()
if asset.name == artifact.path.name]