Skip to content

Commit f65e483

Browse files
committed
Fix missing space in help messages
This change fixes missing space in help messages to make those consistent and pretty rendering when calling help. Change-Id: I947374821a4dbb5e68651c0e72fc5fd2f938e6a1
1 parent 966aede commit f65e483

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

openstackclient/compute/v2/server.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1402,7 +1402,7 @@ def get_parser(self, prog_name):
14021402
default=[],
14031403
help=_(
14041404
'File(s) to inject into image before boot '
1405-
'(repeat option to set multiple files)'
1405+
'(repeat option to set multiple files) '
14061406
'(supported by --os-compute-api-version 2.57 or below)'
14071407
),
14081408
)
@@ -3222,7 +3222,7 @@ def get_parser(self, prog_name):
32223222
action='store_true',
32233223
default=None,
32243224
help=_(
3225-
'Allow disk over-commit on the destination host'
3225+
'Allow disk over-commit on the destination host '
32263226
'(supported with --os-compute-api-version 2.24 or below)'
32273227
),
32283228
)
@@ -3231,7 +3231,7 @@ def get_parser(self, prog_name):
32313231
dest='disk_overcommit',
32323232
action='store_false',
32333233
help=_(
3234-
'Do not over-commit disk on the destination host (default)'
3234+
'Do not over-commit disk on the destination host (default) '
32353235
'(supported with --os-compute-api-version 2.24 or below)'
32363236
),
32373237
)
@@ -3434,7 +3434,7 @@ def get_parser(self, prog_name):
34343434
'--image',
34353435
metavar='<image>',
34363436
help=_(
3437-
'Recreate server from the specified image (name or ID).'
3437+
'Recreate server from the specified image (name or ID). '
34383438
'Defaults to the currently used one.'
34393439
),
34403440
)
@@ -4252,7 +4252,7 @@ def get_parser(self, prog_name):
42524252
'--revert',
42534253
action="store_true",
42544254
help=_(
4255-
'**Deprecated** Restore server state before resize'
4255+
'**Deprecated** Restore server state before resize. '
42564256
"Replaced by the 'openstack server resize revert' and "
42574257
"'openstack server migration revert' commands"
42584258
),
@@ -5005,7 +5005,7 @@ def get_parser(self, prog_name):
50055005
action='store_true',
50065006
default=boolenv('ALL_PROJECTS'),
50075007
help=_(
5008-
'Stop server(s) in another project by name (admin only)'
5008+
'Stop server(s) in another project by name (admin only) '
50095009
'(can be specified using the ALL_PROJECTS envvar)'
50105010
),
50115011
)

openstackclient/volume/v3/volume_backup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,7 @@ def get_parser(self, prog_name):
466466
'--name',
467467
metavar='<name>',
468468
help=_(
469-
'New backup name'
469+
'New backup name '
470470
'(supported by --os-volume-api-version 3.9 or above)'
471471
),
472472
)

0 commit comments

Comments
 (0)