Fix multi-line strings spaces

Change-Id: Ia97821dcde54b46a8ff31dd13657a69a007ccd9a
This commit is contained in:
Jake Yip 2023-07-27 20:40:11 +10:00
parent 915f8f05c4
commit 7d9f02bd23
1 changed files with 3 additions and 3 deletions

View File

@ -85,7 +85,7 @@ class CreateCluster(command.Command):
parser.add_argument('--labels',
metavar='<KEY1=VALUE1,KEY2=VALUE2;KEY3=VALUE3...>',
action='append',
help=_('Arbitrary labels in the form of key=value'
help=_('Arbitrary labels in the form of key=value '
'pairs to associate with a cluster '
'template. May be used multiple times.'))
parser.add_argument('--keypair',
@ -482,8 +482,8 @@ class ResizeCluster(command.Command):
'--nodes-to-remove',
metavar='<Server UUID>',
action='append',
help=_("Server ID of the nodes to be removed. Repeat to add"
"more server ID"))
help=_('Server ID of the nodes to be removed. Repeat to add '
'more server ID'))
parser.add_argument(
'--nodegroup',