From 7d2e7cb5e26fc61167b5a19282074955a566633b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Lebleu?= Date: Thu, 21 Apr 2016 21:57:35 +0200 Subject: [PATCH] [fix] Get pending conf for all services if no one is provided --- src/yunohost/service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/yunohost/service.py b/src/yunohost/service.py index 95874f99a..55047bd4d 100644 --- a/src/yunohost/service.py +++ b/src/yunohost/service.py @@ -604,7 +604,7 @@ def _get_pending_conf(services=[]): if not os.path.isdir(pending_conf_dir): return result if not services: - os.listdir(pending_conf_dir) + services = os.listdir(pending_conf_dir) for name in services: service_conf = {} service_pending_path = os.path.join(pending_conf_dir, name)