Add missing ws separator between words

This is to add missing ws separator between words.

Change-Id: I7cc4ad35395857f36ebc36dfeec2d66b1bcd064e
This commit is contained in:
zhufl 2018-11-21 11:23:02 +08:00
parent 70d2beac39
commit f9b355f6be
2 changed files with 2 additions and 2 deletions

View File

@ -78,7 +78,7 @@ api_opts = [
cfg.BoolOpt( cfg.BoolOpt(
'enable_ssl_api', 'enable_ssl_api',
default=False, 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.') 'via HTTPS instead of HTTP.')
), ),
cfg.IntOpt( cfg.IntOpt(

View File

@ -95,7 +95,7 @@ class KombuRPCListener(ConsumerMixin):
queue.put(result) queue.put(result)
else: else:
LOG.debug( 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) "it [correlation_id={0}]".format(correlation_id)
) )