From f9b355f6be3dddb65de40c9d5cd5328386888720 Mon Sep 17 00:00:00 2001 From: zhufl Date: Wed, 21 Nov 2018 11:23:02 +0800 Subject: [PATCH] Add missing ws separator between words This is to add missing ws separator between words. Change-Id: I7cc4ad35395857f36ebc36dfeec2d66b1bcd064e --- mistral/config.py | 2 +- mistral/rpc/kombu/kombu_listener.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mistral/config.py b/mistral/config.py index 052fd44b4..76a1b56ea 100644 --- a/mistral/config.py +++ b/mistral/config.py @@ -78,7 +78,7 @@ api_opts = [ cfg.BoolOpt( 'enable_ssl_api', default=False, - help=_('Enable the integrated stand-alone API to service requests' + help=_('Enable the integrated stand-alone API to service requests ' 'via HTTPS instead of HTTP.') ), cfg.IntOpt( diff --git a/mistral/rpc/kombu/kombu_listener.py b/mistral/rpc/kombu/kombu_listener.py index 1853d6c5b..157c0cd2d 100644 --- a/mistral/rpc/kombu/kombu_listener.py +++ b/mistral/rpc/kombu/kombu_listener.py @@ -95,7 +95,7 @@ class KombuRPCListener(ConsumerMixin): queue.put(result) else: LOG.debug( - "Got a response, but seems like no process is waiting for" + "Got a response, but seems like no process is waiting for " "it [correlation_id={0}]".format(correlation_id) )