From 9e3d30283268a9c7c07d4b8d6aa33139f5b0e298 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Mon, 22 Apr 2019 22:06:35 +0200 Subject: [PATCH] Feed apps argument to app_upgrade --- src/yunohost/tools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/yunohost/tools.py b/src/yunohost/tools.py index 784f5d512..5f38971bf 100644 --- a/src/yunohost/tools.py +++ b/src/yunohost/tools.py @@ -731,7 +731,7 @@ def tools_upgrade(operation_logger, auth, apps=None, system=False): if apps is not None: try: - app_upgrade(auth) + app_upgrade(auth, app=apps) except Exception as e: failure = True logger.warning('unable to upgrade apps: %s' % str(e))