From 66a5da3ab5ce99f6917409ae7d16a76663c0fce5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mart=C3=AD=20Bol=C3=ADvar?= Date: Tue, 15 Dec 2020 22:59:23 -0800 Subject: [PATCH] west config: tweak help string MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Make it fit on one line in the west help output. Signed-off-by: Martí Bolívar --- src/west/app/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/west/app/config.py b/src/west/app/config.py index b03ae01..d6c848a 100644 --- a/src/west/app/config.py +++ b/src/west/app/config.py @@ -96,7 +96,7 @@ class Config(WestCommand): def __init__(self): super().__init__( 'config', - 'get or set configuration settings in west config files', + 'get or set config file values', CONFIG_DESCRIPTION, requires_workspace=False)