From 5335ffbcbef07e1f815b5f05ca700cc8746c5a4a Mon Sep 17 00:00:00 2001 From: Kload Date: Wed, 28 May 2014 15:37:12 +0200 Subject: [PATCH] [fix] Do not fail if app list is not fetched --- tools.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tools.py b/tools.py index 9f69652bf..64aa6ae6d 100644 --- a/tools.py +++ b/tools.py @@ -334,7 +334,10 @@ def tools_update(ignore_apps=False, ignore_packages=False): apps = [] if not ignore_apps: - app_fetchlist() + try: + app_fetchlist() + except MoulinetteError: + pass app_list = os.listdir(apps_setting_path) if len(app_list) > 0: for app_id in app_list: