From 7f0da83ebce5963354b6c1516ebc6f26a4fb7fd1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Pi=C3=A9dallu?= Date: Sun, 24 Sep 2023 22:12:11 +0200 Subject: [PATCH] catalog_linter: Fix missing is_fatal on yield --- tools/catalog_linter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/catalog_linter.py b/tools/catalog_linter.py index 9ba6689..6925cf8 100755 --- a/tools/catalog_linter.py +++ b/tools/catalog_linter.py @@ -40,7 +40,7 @@ def validate_schema() -> Generator[str, None, None]: def check_app(app: str, infos: Dict[str, Any]) -> Generator[Tuple[str, bool], None, None]: if "state" not in infos: - yield "state is missing" + yield "state is missing", True return if infos["state"] != "working":