Add missing ws seperator between words

This is to add missing ws seperator between words, usually
in log messages.

Change-Id: If9d6744fec660cbef600794ab12d45b23aeeb550
This commit is contained in:
zhufl 2018-11-19 14:14:45 +08:00
parent 8494204297
commit 31bfba049b
2 changed files with 3 additions and 3 deletions

View File

@ -23,7 +23,7 @@ ERROR = 'ERROR'
notifier_opts = [ notifier_opts = [
cfg.StrOpt('default_notification_level', cfg.StrOpt('default_notification_level',
default=INFO, default=INFO,
help=_('Default notification level for outgoing' help=_('Default notification level for outgoing '
'notifications.')), 'notifications.')),
cfg.StrOpt('default_publisher_id', cfg.StrOpt('default_publisher_id',
help=_('Default publisher_id for outgoing notifications.')), help=_('Default publisher_id for outgoing notifications.')),

View File

@ -384,7 +384,7 @@ class SoftwareDeployment(signal_responder.SignalResponder):
'values')) 'values'))
yield swc_io.InputConfig( yield swc_io.InputConfig(
name=self.DEPLOY_SIGNAL_VERB, value='POST', name=self.DEPLOY_SIGNAL_VERB, value='POST',
description=_('HTTP verb to use for signaling output' description=_('HTTP verb to use for signaling output '
'values')) 'values'))
elif self._signal_transport_temp_url(): elif self._signal_transport_temp_url():
@ -395,7 +395,7 @@ class SoftwareDeployment(signal_responder.SignalResponder):
'values')) 'values'))
yield swc_io.InputConfig( yield swc_io.InputConfig(
name=self.DEPLOY_SIGNAL_VERB, value='PUT', name=self.DEPLOY_SIGNAL_VERB, value='PUT',
description=_('HTTP verb to use for signaling output' description=_('HTTP verb to use for signaling output '
'values')) 'values'))
elif (self._signal_transport_heat() or elif (self._signal_transport_heat() or