From 07139e7bc1de5f89cfc3b1a0ac4974444881b38b Mon Sep 17 00:00:00 2001 From: Laurent Peuch Date: Fri, 11 May 2018 04:40:35 +0200 Subject: [PATCH] [enh] display service description on status --- src/yunohost/service.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/yunohost/service.py b/src/yunohost/service.py index a5a97d67c..7284f95b8 100644 --- a/src/yunohost/service.py +++ b/src/yunohost/service.py @@ -218,6 +218,7 @@ def service_status(names=[]): result[name] = { 'status': str(status.get("SubState", "unknown")), 'loaded': str(status.get("LoadState", "unknown")), + 'description': str(status.get("Description", "")), } if len(names) == 1: