From 3a0007a1c34aea731e3f8ab55989f49a3e68baa0 Mon Sep 17 00:00:00 2001 From: Ihar Hrachyshka Date: Fri, 27 May 2016 15:43:24 +0200 Subject: [PATCH] Fixed grammar in image-download command description Change-Id: Ie18e1bee3376fdc01685c6f1d3a949c6934296b3 --- glanceclient/v1/shell.py | 2 +- glanceclient/v2/shell.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/glanceclient/v1/shell.py b/glanceclient/v1/shell.py index 3372951..eb14f6e 100644 --- a/glanceclient/v1/shell.py +++ b/glanceclient/v1/shell.py @@ -155,7 +155,7 @@ def do_image_show(gc, args): @utils.arg('--file', metavar='', help='Local file to save downloaded image data to. ' 'If this is not specified and there is no redirection ' - 'the image data will be not be saved.') + 'the image data will not be saved.') @utils.arg('image', metavar='', help='Name or ID of image to download.') @utils.arg('--progress', action='store_true', default=False, help='Show download progress bar.') diff --git a/glanceclient/v2/shell.py b/glanceclient/v2/shell.py index 9aebead..dfd91fb 100644 --- a/glanceclient/v2/shell.py +++ b/glanceclient/v2/shell.py @@ -272,7 +272,7 @@ def do_explain(gc, args): @utils.arg('--file', metavar='', help=_('Local file to save downloaded image data to. ' 'If this is not specified and there is no redirection ' - 'the image data will be not be saved.')) + 'the image data will not be saved.')) @utils.arg('id', metavar='', help=_('ID of image to download.')) @utils.arg('--progress', action='store_true', default=False, help=_('Show download progress bar.'))