From b0ecf075d4ae01a5520f616812df8247c89d7751 Mon Sep 17 00:00:00 2001 From: Sven-Hendrik Haase Date: Mon, 19 Oct 2020 22:11:22 +0200 Subject: [PATCH] Fix another format string --- ci/release.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/release.py b/ci/release.py index 5fdc7f0..7a44d79 100755 --- a/ci/release.py +++ b/ci/release.py @@ -30,7 +30,7 @@ def upload(name): template = Path("Dockerfile.template").read_text() full_url = f"{project_url}{uploaded_url}" replaced = template.replace("TEMPLATE_ROOTFS_URL", full_url) - hash = f"{Path('output/{name}.tar.xz.SHA256').read_text()[0:64]} {filename}" + hash = f"Path('output/{name}.tar.xz.SHA256').read_text()[0:64] {filename}" replaced = replaced.replace( "TEMPLATE_ROOTFS_HASH", hash )