From 4d3b63f2f863869af430de9a20bac26d2ed4d8f7 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 --- catalog_linter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/catalog_linter.py b/catalog_linter.py index 9ba6689..6925cf8 100755 --- a/catalog_linter.py +++ b/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":