summaryrefslogtreecommitdiff
path: root/openstackclient
diff options
context:
space:
mode:
authorZuul <zuul@review.openstack.org>2019-03-07 23:19:16 +0000
committerGerrit Code Review <review@openstack.org>2019-03-07 23:19:16 +0000
commitc305ac28969367699ed2cbeba3c0e93f8b05bba0 (patch)
tree7c38d3c4b7f63b2823226f56a343b961e53becd4 /openstackclient
parente59b9f4261aef55b89031f2e1aef68d3f3a427d9 (diff)
parent626a3a021c50759841804eeb9aad832ea9e57551 (diff)
downloadpython-openstackclient-c305ac28969367699ed2cbeba3c0e93f8b05bba0.tar.gz
Merge "Mention compute API 2.50 in openstack quota show --class"
Diffstat (limited to 'openstackclient')
-rw-r--r--openstackclient/common/quota.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/openstackclient/common/quota.py b/openstackclient/common/quota.py
index dba6873f..dae1b18e 100644
--- a/openstackclient/common/quota.py
+++ b/openstackclient/common/quota.py
@@ -570,7 +570,10 @@ class SetQuota(command.Command):
class ShowQuota(command.ShowOne, BaseQuota):
- _description = _("Show quotas for project or 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(ShowQuota, self).get_parser(prog_name)