From 4f08ac96135a169d1a85aa16e1b785bb7abe9536 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Thu, 4 Aug 2022 17:19:23 +0200 Subject: [PATCH] Oopsies I commited nonsense --- list_builder.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/list_builder.py b/list_builder.py index 2a4288b..e41cdc1 100755 --- a/list_builder.py +++ b/list_builder.py @@ -299,8 +299,8 @@ def build_app_dict(app, infos): timestamp = int(timestamp) # Build the dict with all the infos - if os.path.exists(open(this_app_cache + "/manifest.toml")): - manifest = toml.load(open(this_app_cache + "/manifest.toml", _dict=OrderedDict)) + if os.path.exists(this_app_cache + "/manifest.toml"): + manifest = toml.load(open(this_app_cache + "/manifest.toml"), _dict=OrderedDict) else: manifest = json.load(open(this_app_cache + "/manifest.json"))