Add missing ws seperator between words

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

Change-Id: Ia975aba3883ce7b3be3cc22044a8cb33ee215f85
This commit is contained in:
zhufl 2018-11-19 13:57:05 +08:00
parent ddc72ebd41
commit 65f1a7e521
4 changed files with 4 additions and 4 deletions

View File

@ -120,7 +120,7 @@ core_opts = [
cfg.BoolOpt('filter_validation', default=True,
help=_('If True, then allow plugins to decide '
'whether to perform validations on filter parameters. '
'Filter validation is enabled if this config'
'Filter validation is enabled if this config '
'is turned on and it is supported by all plugins')),
cfg.IntOpt('global_physnet_mtu', default=constants.DEFAULT_NETWORK_MTU,
deprecated_name='segment_mtu', deprecated_group='ml2',

View File

@ -542,5 +542,5 @@ class AgentExtRpcCallback(object):
"a timestamp: %(agent_time)s. This differs from "
"the current server timestamp: %(serv_time)s by "
"%(diff)s seconds, which is more than the "
"threshold agent down"
"threshold agent down "
"time: %(threshold)s.", log_dict)

View File

@ -88,7 +88,7 @@ class ItemController(utils.NeutronPecanController):
collection_path)
if not controller:
if collection not in self._member_actions:
LOG.warning("No controller found for: %s - returning"
LOG.warning("No controller found for: %s - returning "
"response code 404", collection)
pecan.abort(404)
# collection is a member action, so we create a new controller

View File

@ -68,7 +68,7 @@ class RouterNotEnabledSnat(n_exc.NeutronException):
class EventsDisabled(n_exc.InvalidInput):
message = _('List of events %(events)s were disabled for'
message = _('List of events %(events)s were disabled for '
'%(resource_type)s.')