Fix format string

This commit is contained in:
Sven-Hendrik Haase 2020-10-19 19:44:03 +02:00
parent c786b40a38
commit dba6a9053a
No known key found for this signature in database
GPG Key ID: 39E4B877E62EB915

View File

@ -25,7 +25,7 @@ def upload(name):
print(f"Uploading {name}.tar.xz")
filename = f"{name}-{build_date}.tar.xz"
uploaded_url = project.upload(
filename, filepath="output/{name}.tar.xz"
filename, filepath=f"output/{name}.tar.xz"
)["url"]
template = Path("Dockerfile.template").read_text()
full_url = f"{project_url}{uploaded_url}"