mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
[fix] Get pending conf for all services if no one is provided
This commit is contained in:
parent
cdf3c13bf5
commit
7d2e7cb5e2
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue