From 18bd8e9e137e17c8a46f5c4bf9e0dca9a116b2b7 Mon Sep 17 00:00:00 2001 From: tituspijean <titus+yunohost@pijean.ovh> Date: Mon, 29 Apr 2024 21:33:46 +0200 Subject: [PATCH] Typo (#2270) Co-authored-by: OniriCorpe <oniricorpe@yunohost.org> --- tools/list_builder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/list_builder.py b/tools/list_builder.py index 16fe735..56c472f 100755 --- a/tools/list_builder.py +++ b/tools/list_builder.py @@ -65,7 +65,7 @@ def __build_app_dict(data) -> Optional[tuple[str, dict[str, Any]]]: try: return name, build_app_dict(name, info) except Exception as err: - logging.error("[List builder] Error while updating %s: %s)", name, err) + logging.error("[List builder] Error while updating %s: %s", name, err) def build_base_catalog(nproc: int):