Skip to content

Commit

Permalink
Fix missing arch variable
Browse files Browse the repository at this point in the history
  • Loading branch information
bbhtt authored and barthalion committed Nov 30, 2023
1 parent c0d3849 commit e1a8b42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flatpak_builder_lint/checks/screenshots.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit e1a8b42

Please sign in to comment.