build-release: Fix f-string, take 2

This commit is contained in:
Florian Bruhin 2022-06-22 16:02:57 +02:00
parent 208e56f0e9
commit 52d98ad9aa
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(f"Uploading {path}")
print(f"Uploading {artifact.path}")
assets = [asset for asset in release.assets()
if asset.name == artifact.path.name]