From 758eb837f8343998e392ada3657be2490e980657 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Wed, 22 Jun 2022 15:35:26 +0200 Subject: build-release: Fix f-string (cherry picked from commit 4e5b1d287d655ec27e5c8f2730ee4e1e682ce940) --- scripts/dev/build_release.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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] -- cgit v1.2.3-54-g00ecf