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:26 +0200
commit4e5b1d287d655ec27e5c8f2730ee4e1e682ce940 (patch)
tree7e9d621c930bd03a97c610d02905f77443cf0815
parent98990715a6fb51763285628f4ade259c7c3d1b23 (diff)
downloadqutebrowser-4e5b1d287d655ec27e5c8f2730ee4e1e682ce940.tar.gz
qutebrowser-4e5b1d287d655ec27e5c8f2730ee4e1e682ce940.zip
build-release: Fix f-string
-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]