From 05cd0c7508cdc2d83a61e0211938568fc7f397db Mon Sep 17 00:00:00 2001
From: Atsushi SAKAI <sakaia@jp.fujitsu.com>
Date: Fri, 18 Sep 2015 14:19:32 +0900
Subject: [PATCH] Add period in help message

  Command help message uses help and CLI-Reference generation.
  and in convention, help message stops with period ".".

Change-Id: I652afdb5e4d69a0476a0a2dc313ae60ece3b7bbc
---
 glanceclient/shell.py    | 4 ++--
 glanceclient/v1/shell.py | 2 +-
 glanceclient/v2/shell.py | 6 +++---
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/glanceclient/shell.py b/glanceclient/shell.py
index faa014c6..7d3a49e8 100755
--- a/glanceclient/shell.py
+++ b/glanceclient/shell.py
@@ -225,7 +225,7 @@ class OpenStackImagesShell(object):
 
         parser.add_argument('-v', '--verbose',
                             default=False, action="store_true",
-                            help="Print more verbose output")
+                            help="Print more verbose output.")
 
         parser.add_argument('--get-schema',
                             default=False, action="store_true",
@@ -236,7 +236,7 @@ class OpenStackImagesShell(object):
 
         parser.add_argument('--timeout',
                             default=600,
-                            help='Number of seconds to wait for a response')
+                            help='Number of seconds to wait for a response.')
 
         parser.add_argument('--no-ssl-compression',
                             dest='ssl_compression',
diff --git a/glanceclient/v1/shell.py b/glanceclient/v1/shell.py
index c28dc23f..3372951d 100644
--- a/glanceclient/v1/shell.py
+++ b/glanceclient/v1/shell.py
@@ -410,7 +410,7 @@ def do_member_list(gc, args):
 @utils.arg('image', metavar='<IMAGE>',
            help='Image to add member to.')
 @utils.arg('tenant_id', metavar='<TENANT_ID>',
-           help='Tenant to add as member')
+           help='Tenant to add as member.')
 @utils.arg('--can-share', action='store_true', default=False,
            help='Allow the specified tenant to share this image.')
 def do_member_create(gc, args):
diff --git a/glanceclient/v2/shell.py b/glanceclient/v2/shell.py
index 3ae5d41e..9cdde552 100644
--- a/glanceclient/v2/shell.py
+++ b/glanceclient/v2/shell.py
@@ -353,7 +353,7 @@ def do_image_tag_delete(gc, args):
            help='URL of location to add.')
 @utils.arg('--metadata', metavar='<STRING>', default='{}',
            help=('Metadata associated with the location. '
-                 'Must be a valid JSON object (default: %(default)s)'))
+                 'Must be a valid JSON object (default: %(default)s).'))
 @utils.arg('id', metavar='<ID>',
            help='ID of image to which the location is to be added.')
 def do_location_add(gc, args):
@@ -380,7 +380,7 @@ def do_location_delete(gc, args):
            help='URL of location to update.')
 @utils.arg('--metadata', metavar='<STRING>', default='{}',
            help=('Metadata associated with the location. '
-                 'Must be a valid JSON object (default: %(default)s)'))
+                 'Must be a valid JSON object (default: %(default)s).'))
 @utils.arg('id', metavar='<ID>',
            help='ID of image whose location is to be updated.')
 def do_location_update(gc, args):
@@ -940,7 +940,7 @@ def do_task_show(gc, args):
            help='Type of Task. Please refer to Glance schema or documentation'
            ' to see which tasks are supported.')
 @utils.arg('--input', metavar='<STRING>', default='{}',
-           help='Parameters of the task to be launched')
+           help='Parameters of the task to be launched.')
 def do_task_create(gc, args):
     """Create a new task."""
     if not (args.type and args.input):