summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakashi NATSUME <natsume.takashi@lab.ntt.co.jp>2018-07-23 13:04:07 +0900
committerTakashi NATSUME <natsume.takashi@lab.ntt.co.jp>2018-07-23 13:32:54 +0000
commitf1005ce76b0b4927569efdb99e15e04e5d402dc3 (patch)
treece5f58791d8f819c8fb22536a60f1be42e4159e5
parent3398e14b8fc85a1ea32e089436c93f26c363aafd (diff)
downloadpython-novaclient-f1005ce76b0b4927569efdb99e15e04e5d402dc3.tar.gz
Fix the help text for server-group-create11.0.0
Replace `` with " in the help text of the server-group-create command for consistency with other help text. TrivialFix Change-Id: Iaeb00b11a723e16a295c6692f6f38e91bc9490f7
-rw-r--r--novaclient/v2/shell.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/novaclient/v2/shell.py b/novaclient/v2/shell.py
index 4f8b695c..e6a09a61 100644
--- a/novaclient/v2/shell.py
+++ b/novaclient/v2/shell.py
@@ -4594,8 +4594,8 @@ def do_server_group_create(cs, args):
action='append',
default=[],
help=_('A rule for the policy. Currently, only the '
- '``max_server_per_host`` rule is supported for the '
- '``anti-affinity`` policy.'))
+ '"max_server_per_host" rule is supported for the '
+ '"anti-affinity" policy.'))
def do_server_group_create(cs, args):
"""Create a new server group with the specified details."""
rules = _meta_parsing(args.rules)