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
This commit is contained in:
@@ -1402,7 +1402,7 @@ class CreateServer(command.ShowOne):
|
|||||||
default=[],
|
default=[],
|
||||||
help=_(
|
help=_(
|
||||||
'File(s) to inject into image before boot '
|
'File(s) to inject into image before boot '
|
||||||
'(repeat option to set multiple files)'
|
'(repeat option to set multiple files) '
|
||||||
'(supported by --os-compute-api-version 2.57 or below)'
|
'(supported by --os-compute-api-version 2.57 or below)'
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
@@ -3222,7 +3222,7 @@ revert to release the new server and restart the old one."""
|
|||||||
action='store_true',
|
action='store_true',
|
||||||
default=None,
|
default=None,
|
||||||
help=_(
|
help=_(
|
||||||
'Allow disk over-commit on the destination host'
|
'Allow disk over-commit on the destination host '
|
||||||
'(supported with --os-compute-api-version 2.24 or below)'
|
'(supported with --os-compute-api-version 2.24 or below)'
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
@@ -3231,7 +3231,7 @@ revert to release the new server and restart the old one."""
|
|||||||
dest='disk_overcommit',
|
dest='disk_overcommit',
|
||||||
action='store_false',
|
action='store_false',
|
||||||
help=_(
|
help=_(
|
||||||
'Do not over-commit disk on the destination host (default)'
|
'Do not over-commit disk on the destination host (default) '
|
||||||
'(supported with --os-compute-api-version 2.24 or below)'
|
'(supported with --os-compute-api-version 2.24 or below)'
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
@@ -3434,7 +3434,7 @@ class RebuildServer(command.ShowOne):
|
|||||||
'--image',
|
'--image',
|
||||||
metavar='<image>',
|
metavar='<image>',
|
||||||
help=_(
|
help=_(
|
||||||
'Recreate server from the specified image (name or ID).'
|
'Recreate server from the specified image (name or ID). '
|
||||||
'Defaults to the currently used one.'
|
'Defaults to the currently used one.'
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
@@ -4252,7 +4252,7 @@ release the new server and restart the old one."""
|
|||||||
'--revert',
|
'--revert',
|
||||||
action="store_true",
|
action="store_true",
|
||||||
help=_(
|
help=_(
|
||||||
'**Deprecated** Restore server state before resize'
|
'**Deprecated** Restore server state before resize. '
|
||||||
"Replaced by the 'openstack server resize revert' and "
|
"Replaced by the 'openstack server resize revert' and "
|
||||||
"'openstack server migration revert' commands"
|
"'openstack server migration revert' commands"
|
||||||
),
|
),
|
||||||
@@ -5005,7 +5005,7 @@ class StopServer(command.Command):
|
|||||||
action='store_true',
|
action='store_true',
|
||||||
default=boolenv('ALL_PROJECTS'),
|
default=boolenv('ALL_PROJECTS'),
|
||||||
help=_(
|
help=_(
|
||||||
'Stop server(s) in another project by name (admin only)'
|
'Stop server(s) in another project by name (admin only) '
|
||||||
'(can be specified using the ALL_PROJECTS envvar)'
|
'(can be specified using the ALL_PROJECTS envvar)'
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
@@ -466,7 +466,7 @@ class SetVolumeBackup(command.Command):
|
|||||||
'--name',
|
'--name',
|
||||||
metavar='<name>',
|
metavar='<name>',
|
||||||
help=_(
|
help=_(
|
||||||
'New backup name'
|
'New backup name '
|
||||||
'(supported by --os-volume-api-version 3.9 or above)'
|
'(supported by --os-volume-api-version 3.9 or above)'
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
Reference in New Issue
Block a user