From 4004ff8d237db850b657d652b38bd05349d1c78a Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Fri, 9 Apr 2021 00:17:47 +0200 Subject: [PATCH] Don't include notworking apps in built list --- list_builder.py | 1 + 1 file changed, 1 insertion(+) diff --git a/list_builder.py b/list_builder.py index a8bd0523..8af608ba 100755 --- a/list_builder.py +++ b/list_builder.py @@ -11,6 +11,7 @@ import time now = time.time() catalog = json.load(open("apps.json")) +catalog = {app: infos for app, infos in catalog.items() if infos.get('state') != 'notworking'} my_env = os.environ.copy() my_env["GIT_TERMINAL_PROMPT"] = "0"