From dba302e1dd497c49f9e85b4c2bd6f51f06c00155 Mon Sep 17 00:00:00 2001 From: chenying Date: Fri, 28 Aug 2015 10:27:05 +0800 Subject: [PATCH] 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 --- cinderclient/shell.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/cinderclient/shell.py b/cinderclient/shell.py index 3b395f0ef..7215c1bb0 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='', 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='', 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='', 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)