From 6ba28821bc78270c2c704e20589a1070596ff688 Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Wed, 18 Jan 2017 13:38:57 +0100 Subject: [PATCH] Fix help strings Some help strings miss spaces and thus get displayed like "willbe" or "biggerthan" - add missing spaces. Change-Id: I560738dd46b3088a6e528a1a24fb2dbea495dcc7 --- novaclient/v2/shell.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/novaclient/v2/shell.py b/novaclient/v2/shell.py index 055559a44..ae36e4d65 100644 --- a/novaclient/v2/shell.py +++ b/novaclient/v2/shell.py @@ -1629,7 +1629,7 @@ def do_image_delete(cs, args): dest='not-tags', metavar='', default=None, - help=_("Only the servers that do not have any of the given tags will" + help=_("Only the servers that do not have any of the given tags will " "be included in the list results. Boolean expression in this case " "is 'NOT(t1 AND t2)'. Tags must be separated by commas: " "--not-tags "), @@ -1639,7 +1639,7 @@ def do_image_delete(cs, args): dest='not-tags-any', metavar='', default=None, - help=_("Only the servers that do not have at least one of the given tags" + help=_("Only the servers that do not have at least one of the given tags " "will be included in the list result. Boolean expression in this " "case is 'NOT(t1 OR t2)'. Tags must be separated by commas: " "--not-tags-any "), @@ -5097,8 +5097,8 @@ def _print_server_group_details(cs, server_group): # noqa metavar='', type=int, default=None, - help=_("Maximum number of server groups to display. If limit is bigger" - "than 'CONF.api.max_limit' option of Nova API, limit" + help=_("Maximum number of server groups to display. If limit is bigger " + "than 'CONF.api.max_limit' option of Nova API, limit " "'CONF.api.max_limit' will be used instead.")) @utils.arg( '--offset',