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
This commit is contained in:
Atsushi SAKAI
2015-09-18 14:19:32 +09:00
parent 3651d5c02e
commit 05cd0c7508
3 changed files with 6 additions and 6 deletions
+3 -3
View File
@@ -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):