From 90addcf90efeeae28b91b1c445d104b13683fef5 Mon Sep 17 00:00:00 2001 From: Juan Badia Payno Date: Tue, 4 May 2021 17:02:42 +0200 Subject: [PATCH] BnR Typo missing some spaces between words on the command help When the command print the help there are some spaces missing Change-Id: I1305b519a230823be37b7f50c75ce331c16999d6 (cherry picked from commit a7f177860c400f08fc73164b071134b07a44d778) --- tripleoclient/v1/overcloud_backup.py | 6 +++--- tripleoclient/v1/undercloud_backup.py | 14 +++++++------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/tripleoclient/v1/overcloud_backup.py b/tripleoclient/v1/overcloud_backup.py index c3dac995c..a5438b32f 100644 --- a/tripleoclient/v1/overcloud_backup.py +++ b/tripleoclient/v1/overcloud_backup.py @@ -42,14 +42,14 @@ class BackupOvercloud(command.Command): const='rear', nargs='?', action='store', - help=_("Initialize environment for backup," + help=_("Initialize environment for backup, " "using 'rear' or 'nfs' as args " "which will check for package install " "and configured ReaR or NFS server. " "Defaults to: rear. " "i.e. --init rear. " - "WARNING: This flag will be deprecated" - "and replaced by '--setup-rear' and" + "WARNING: This flag will be deprecated " + "and replaced by '--setup-rear' and " "'--setup-nfs'.") ) diff --git a/tripleoclient/v1/undercloud_backup.py b/tripleoclient/v1/undercloud_backup.py index 7b4716189..161ad4ed1 100644 --- a/tripleoclient/v1/undercloud_backup.py +++ b/tripleoclient/v1/undercloud_backup.py @@ -42,14 +42,14 @@ class BackupUndercloud(command.Command): const='rear', nargs='?', action='store', - help=_("Initialize environment for backup," + help=_("Initialize environment for backup, " "using 'rear' or 'nfs' as args " "which will check for package install " "and configured ReaR or NFS server. " "Defaults to: rear. " "i.e. --init rear. " - "WARNING: This flag will be deprecated" - "and replaced by '--setup-rear' and" + "WARNING: This flag will be deprecated " + "and replaced by '--setup-rear' and " "'--setup-nfs'.") ) @@ -58,8 +58,8 @@ class BackupUndercloud(command.Command): '--setup-nfs', default=False, action='store_true', - help=_("Setup the NFS server on the backup node" - "which will install required packages" + help=_("Setup the NFS server on the backup node " + "which will install required packages " "and configuration on the host 'BackupNode' " "in the ansible inventory.") @@ -69,7 +69,7 @@ class BackupUndercloud(command.Command): '--setup-rear', default=False, action='store_true', - help=_("Setup ReaR on the 'Undercloud' host which will" + help=_("Setup ReaR on the 'Undercloud' host which will " "install and configure ReaR.") ) @@ -77,7 +77,7 @@ class BackupUndercloud(command.Command): '--inventory', action='store', default='/home/stack/tripleo-inventory.yaml', - help=_("Tripleo inventory file generated with" + help=_("Tripleo inventory file generated with " "tripleo-ansible-inventory command. " "Defaults to: /home/stack/tripleo-inventory.yaml.") )