From 6f8bb1ca25f2fa327f360791c0a8bc8386379154 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin <4533074+alexAubin@users.noreply.github.com> Date: Sat, 8 Jun 2024 19:08:51 +0200 Subject: [PATCH] list_builder: missing return ends up in disaster (#2395) --- list_builder.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/list_builder.py b/list_builder.py index 395a3b3..ecea28a 100755 --- a/list_builder.py +++ b/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(),