summaryrefslogtreecommitdiff
path: root/glanceclient/v2/shell.py
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2015-09-25 16:48:54 +0000
committerGerrit Code Review <review@openstack.org>2015-09-25 16:48:54 +0000
commit6e7c64bd5b36119be6e58889afcebfae667e2343 (patch)
tree11ad4c6bab06ebe9f744f7f9009bc747dab845cb /glanceclient/v2/shell.py
parent586d40131d0637f50ba214ef0d85ed9ddafca4f6 (diff)
parent05cd0c7508cdc2d83a61e0211938568fc7f397db (diff)
downloadpython-glanceclient-6e7c64bd5b36119be6e58889afcebfae667e2343.tar.gz
Merge "Add period in help message"
Diffstat (limited to 'glanceclient/v2/shell.py')
-rw-r--r--glanceclient/v2/shell.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/glanceclient/v2/shell.py b/glanceclient/v2/shell.py
index 08271e0..593630d 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):