From 526123b6dd812d64667dd713e883acf51c6f986a Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Fri, 6 Sep 2019 17:14:08 -0700 Subject: [PATCH] setup: Better log message when no apps need upgrades Signed-off-by: Sunil Mohan Adapa Reviewed-by: James Valleroy --- plinth/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plinth/setup.py b/plinth/setup.py index 8118819ba..4b0897e9f 100644 --- a/plinth/setup.py +++ b/plinth/setup.py @@ -502,7 +502,7 @@ class ForceUpgrader(): apps = self._get_list_of_apps_to_force_upgrade() logger.info('Apps needing conffile upgrades: %s', - ', '.join([str(app.name) for app in apps])) + ', '.join([str(app.name) for app in apps]) or 'None') need_retry = False for app, packages in apps.items():