From 200ff2de3137f5bcff94aced28eaa745304903b7 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Thu, 5 Mar 2020 18:15:55 +0100 Subject: [PATCH] Micro issue from previous app list system rework --- src/yunohost/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/yunohost/app.py b/src/yunohost/app.py index b05d7b818..056083b67 100644 --- a/src/yunohost/app.py +++ b/src/yunohost/app.py @@ -2754,7 +2754,7 @@ def unstable_apps(): output = [] - for infos in app_list(full=True): + for infos in app_list(full=True)["apps"]: if not infos.get("from_catalog") or infos.get("from_catalog").get("state") in ["inprogress", "notworking"]: output.append(infos["id"])