diff --git a/lib/yunohost/app.py b/lib/yunohost/app.py index 338555df9..f18b45f9f 100644 --- a/lib/yunohost/app.py +++ b/lib/yunohost/app.py @@ -731,9 +731,8 @@ def app_debug(app): return { 'name': manifest['name'], 'services_logs': [{ - 'service': x, - 'log': service_log(x), - } for x in manifest.get("services", [])] + x: service_log(x), + } for x in sorted(manifest.get("services", []))] }