summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjiasirui <jiasirui@inspur.com>2019-08-29 16:09:56 +0800
committerjiasirui <jiasirui@inspur.com>2019-08-30 08:28:22 +0800
commite35b3c160b5314ff573e913f3236cc98ccf500bc (patch)
treeea5afcbfccc30da2280c4e10688853733b98e93b
parent62f4868e6e240ebbb4d6e29b8c1e1d23a24fcc15 (diff)
downloadpython-neutronclient-e35b3c160b5314ff573e913f3236cc98ccf500bc.tar.gz
Improve help text
Change-Id: Idc8f55567d0d4c95968d34d3b7aa95048623d9d0
-rw-r--r--neutronclient/shell.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/neutronclient/shell.py b/neutronclient/shell.py
index 6dced26..fbc9120 100644
--- a/neutronclient/shell.py
+++ b/neutronclient/shell.py
@@ -222,7 +222,7 @@ class NeutronShell(app.App):
type=check_non_negative_int,
default=0,
help=_("How many times the request to the Neutron server should "
- "be retried if it fails."))
+ "be retried if it fails. Defaults to 0."))
# FIXME(bklei): this method should come from keystoneauth1
self._append_global_identity_args(parser)
@@ -241,12 +241,12 @@ class NeutronShell(app.App):
parser.add_argument(
'--os-service-type', metavar='<os-service-type>',
default=env('OS_NETWORK_SERVICE_TYPE', default='network'),
- help=_('Defaults to env[OS_NETWORK_SERVICE_TYPE] or network.'))
+ help=_('Defaults to env[OS_NETWORK_SERVICE_TYPE] or "network".'))
parser.add_argument(
'--os-endpoint-type', metavar='<os-endpoint-type>',
default=env('OS_ENDPOINT_TYPE', default='public'),
- help=_('Defaults to env[OS_ENDPOINT_TYPE] or public.'))
+ help=_('Defaults to env[OS_ENDPOINT_TYPE] or "public".'))
# FIXME(bklei): --service-type is deprecated but kept in for
# backward compatibility.