mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
[fix] True instead of description (#1189)
This commit is contained in:
parent
07f8d6d7af
commit
7a947dbce1
1 changed files with 1 additions and 1 deletions
|
@ -400,7 +400,7 @@ def _get_and_format_service_status(service, infos):
|
|||
|
||||
translation_key = "service_description_%s" % service
|
||||
if m18n.key_exists(translation_key):
|
||||
description = m18n.key_exists(translation_key)
|
||||
description = m18n.n(translation_key)
|
||||
else:
|
||||
description = str(raw_status.get("Description", ""))
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue