From b36c1529f15343f60ad64a04b17913ad3e85b61f Mon Sep 17 00:00:00 2001 From: Pierre Riteau Date: Thu, 3 Oct 2019 14:10:28 +0200 Subject: [PATCH] Fix spacing in help message Change-Id: Ie622b8a39514f87b60ff2e801843c5e3c06106e7 --- oslo_messaging/_drivers/impl_rabbit.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/oslo_messaging/_drivers/impl_rabbit.py b/oslo_messaging/_drivers/impl_rabbit.py index e6a673c7d..3995a675c 100644 --- a/oslo_messaging/_drivers/impl_rabbit.py +++ b/oslo_messaging/_drivers/impl_rabbit.py @@ -171,9 +171,9 @@ rabbit_opts = [ cfg.IntOpt('direct_mandatory_flag', default=True, help='Enable/Disable the RabbitMQ mandatory flag ' - 'for direct send. The direct send is used as reply,' - 'so the MessageUndeliverable exception is raised' - ' in case the client queue does not exist.'), + 'for direct send. The direct send is used as reply, ' + 'so the MessageUndeliverable exception is raised ' + 'in case the client queue does not exist.'), ] LOG = logging.getLogger(__name__)