summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorchenying <ying.chen@huawei.com>2015-08-28 10:27:05 +0800
committerchenying <ying.chen@huawei.com>2015-09-06 02:28:07 +0000
commitdba302e1dd497c49f9e85b4c2bd6f51f06c00155 (patch)
tree53b812867bcac354780b2dbdbba1e6a84e7dbdee
parent1c82825c4105f11c05f681e3dea16929f1a2efc5 (diff)
downloadpython-cinderclient-dba302e1dd497c49f9e85b4c2bd6f51f06c00155.tar.gz
Add a period for the description string of a argument
This change add a period for the description string of a argument that gets dropped. Closes-Bug: #1489317 Change-Id: Ica1a74625a640f8d664f5ca183ada14ef63be077
-rw-r--r--cinderclient/shell.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/cinderclient/shell.py b/cinderclient/shell.py
index 3b395f0..7215c1b 100644
--- a/cinderclient/shell.py
+++ b/cinderclient/shell.py
@@ -200,7 +200,7 @@ class OpenStackCinderShell(object):
default=utils.env('CINDERCLIENT_BYPASS_URL'),
help="Use this API endpoint instead of the "
"Service Catalog. Defaults to "
- "env[CINDERCLIENT_BYPASS_URL]")
+ "env[CINDERCLIENT_BYPASS_URL].")
parser.add_argument('--bypass_url',
help=argparse.SUPPRESS)
@@ -241,7 +241,7 @@ class OpenStackCinderShell(object):
default=utils.env('OS_AUTH_STRATEGY', default='keystone'),
help=_('Authentication strategy (Env: OS_AUTH_STRATEGY'
', default keystone). For now, any other value will'
- ' disable the authentication'))
+ ' disable the authentication.'))
parser.add_argument(
'--os_auth_strategy',
help=argparse.SUPPRESS)
@@ -294,7 +294,7 @@ class OpenStackCinderShell(object):
parser.add_argument(
'--os-user-id', metavar='<auth-user-id>',
default=utils.env('OS_USER_ID'),
- help=_('Authentication user ID (Env: OS_USER_ID)'))
+ help=_('Authentication user ID (Env: OS_USER_ID).'))
parser.add_argument(
'--os_user_id',
@@ -372,7 +372,7 @@ class OpenStackCinderShell(object):
parser.add_argument(
'--os-token', metavar='<token>',
default=utils.env('OS_TOKEN'),
- help=_('Defaults to env[OS_TOKEN]'))
+ help=_('Defaults to env[OS_TOKEN].'))
parser.add_argument(
'--os_token',
help=argparse.SUPPRESS)
@@ -380,7 +380,7 @@ class OpenStackCinderShell(object):
parser.add_argument(
'--os-url', metavar='<url>',
default=utils.env('OS_URL'),
- help=_('Defaults to env[OS_URL]'))
+ help=_('Defaults to env[OS_URL].'))
parser.add_argument(
'--os_url',
help=argparse.SUPPRESS)