From ff75dc68ee952a9a181e0ec402fd4cc90cc60742 Mon Sep 17 00:00:00 2001 From: kload Date: Wed, 2 Jul 2014 10:46:28 +0200 Subject: [PATCH] [fix] Skip custom apps in upgrade process --- app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app.py b/app.py index 0abd2f93a..ac1133a68 100644 --- a/app.py +++ b/app.py @@ -308,8 +308,8 @@ def app_upgrade(auth, app, url=None, file=None): elif url: manifest = _fetch_app_from_git(url) elif 'lastUpdate' not in new_app_dict or 'git' not in new_app_dict: - raise MoulinetteError(errno.EDESTADDRREQ, - m18n.n('custom_app_url_required', app_id)) + msignals.display(m18n.n('custom_app_url_required', app_id), 'warning') + continue elif (new_app_dict['lastUpdate'] > current_app_dict['lastUpdate']) \ or ('update_time' not in current_app_dict['settings'] \ and (new_app_dict['lastUpdate'] > current_app_dict['settings']['install_time'])) \