mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
Fixing also get_conf_hashes
This commit is contained in:
parent
5abcaadaea
commit
0e55b17665
1 changed files with 2 additions and 1 deletions
|
@ -645,7 +645,8 @@ def _get_conf_hashes(service):
|
|||
if service not in services:
|
||||
logger.debug("Service %s is not in services.yml yet.", service)
|
||||
return {}
|
||||
elif 'conffiles' not in services[service]:
|
||||
|
||||
if (services[service] is None) or ('conffiles' not in services[service]):
|
||||
logger.debug("No configuration files for service %s.", service)
|
||||
return {}
|
||||
else:
|
||||
|
|
Loading…
Add table
Reference in a new issue