build-release: Fix f-string

This commit is contained in:
Florian Bruhin 2022-06-22 15:35:26 +02:00
parent 98990715a6
commit 4e5b1d287d
1 changed files with 1 additions and 1 deletions

View File

@ -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]