From e35b3c160b5314ff573e913f3236cc98ccf500bc Mon Sep 17 00:00:00 2001 From: jiasirui Date: Thu, 29 Aug 2019 16:09:56 +0800 Subject: [PATCH] Improve help text Change-Id: Idc8f55567d0d4c95968d34d3b7aa95048623d9d0 --- neutronclient/shell.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/neutronclient/shell.py b/neutronclient/shell.py index 6dced26cd..fbc91209f 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='', 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='', 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.