summaryrefslogtreecommitdiff
path: root/openstackclient/common
diff options
context:
space:
mode:
authorStephen Finucane <sfinucan@redhat.com>2022-12-12 18:02:54 +0000
committerStephen Finucane <sfinucan@redhat.com>2022-12-12 18:04:01 +0000
commit5afe48040cc5091d6282c88640700fed81920e77 (patch)
tree573c6fbf996cb4745d45fb1552a23047bc7772e9 /openstackclient/common
parent29129a7715feb750b7738a5884f9d2f49491a511 (diff)
downloadpython-openstackclient-5afe48040cc5091d6282c88640700fed81920e77.tar.gz
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 <sfinucan@redhat.com>
Diffstat (limited to 'openstackclient/common')
-rw-r--r--openstackclient/common/quota.py10
1 files changed, 4 insertions, 6 deletions
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)