From 5afe48040cc5091d6282c88640700fed81920e77 Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Mon, 12 Dec 2022 18:02:54 +0000 Subject: Fix really long help strings Each command should have a summary line followed by a longer description, if needed. Some commands were not following this. Fix them. Change-Id: If1ce7654037d192626460f34c069ea0979919b9b Signed-off-by: Stephen Finucane --- openstackclient/common/quota.py | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'openstackclient/common') diff --git a/openstackclient/common/quota.py b/openstackclient/common/quota.py index 246e44b3..670451e2 100644 --- a/openstackclient/common/quota.py +++ b/openstackclient/common/quota.py @@ -749,12 +749,10 @@ class SetQuota(common.NetDetectionMixin, command.Command): class ShowQuota(command.Lister): - _description = _( - "Show quotas for project or class. " - "Specify ``--os-compute-api-version 2.50`` or higher to see " - "``server-groups`` and ``server-group-members`` output for a given " - "quota class." - ) + _description = _("""Show quotas for project or class. + +Specify ``--os-compute-api-version 2.50`` or higher to see ``server-groups`` +and ``server-group-members`` output for a given quota class.""") def get_parser(self, prog_name): parser = super().get_parser(prog_name) -- cgit v1.2.1