From e1a8b427c9c90d7fc739a00a47b03c6db866d46e Mon Sep 17 00:00:00 2001 From: bbhtt Date: Thu, 30 Nov 2023 08:33:57 +0530 Subject: [PATCH] Fix missing arch variable --- flatpak_builder_lint/checks/screenshots.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flatpak_builder_lint/checks/screenshots.py b/flatpak_builder_lint/checks/screenshots.py index 20e039e6..4a8ca926 100644 --- a/flatpak_builder_lint/checks/screenshots.py +++ b/flatpak_builder_lint/checks/screenshots.py @@ -68,7 +68,7 @@ def check_repo(self, path: str) -> None: return ostree_screenshots_cmd = ostree.cli( - path, "ls", "-R", "screenshots/{arch}" + path, "ls", "-R", f"screenshots/{arch}" ) if ostree_screenshots_cmd["returncode"] != 0: raise RuntimeError("Failed to list screenshots")