Merge branch 'unstable' of https://github.com/yunohost/yunohost into unstable

This commit is contained in:
Alexandre Aubin 2018-05-10 22:58:43 +02:00
commit cc240e94ca

View file

@ -574,6 +574,12 @@ def _get_services():
except:
return {}
else:
# some services are marked as None to remove them from YunoHost
# filter this
for key, value in services.items():
if value is None:
del services[key]
return services