From db0d47fa677975a1613bea7da6fc9b3b0d23cc2b Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Sat, 8 Jun 2024 19:07:50 +0200 Subject: [PATCH] list_builder: missing return ends up in disaster --- tools/list_builder.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/list_builder.py b/tools/list_builder.py index 395a3b3c..ecea28a0 100755 --- a/tools/list_builder.py +++ b/tools/list_builder.py @@ -108,6 +108,8 @@ def write_catalog_v3(base_catalog, target_dir: Path) -> None: logo_hash = None infos["logo_hash"] = logo_hash + return infos + full_catalog = { "apps": {app: infos_for_v3(app, info) for app, info in base_catalog.items()}, "categories": categories_list(),