summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2022-06-22 15:35:26 +0200
committerFlorian Bruhin <me@the-compiler.org>2022-06-22 15:35:34 +0200
commit758eb837f8343998e392ada3657be2490e980657 (patch)
tree23f7b93fbd1d34d6a6cb71fcce3d23a0705656b1
parent951a14a66bb39dee089887642ac4c2b6dcb3b612 (diff)
downloadqutebrowser-758eb837f8343998e392ada3657be2490e980657.tar.gz
qutebrowser-758eb837f8343998e392ada3657be2490e980657.zip
build-release: Fix f-string
(cherry picked from commit 4e5b1d287d655ec27e5c8f2730ee4e1e682ce940)
-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 0fdd63a57..e719df869 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("Uploading {path}")
+ print(f"Uploading {path}")
assets = [asset for asset in release.assets()
if asset.name == artifact.path.name]