Fix log message formatting

Multi-line literal misses a space

Change-Id: I6c076c5e886f518f14e6bd756071b662484895a1
This commit is contained in:
BubaVV 2018-06-29 15:19:45 +03:00
parent ab03c13711
commit 4767fbdb90
1 changed files with 2 additions and 2 deletions

View File

@ -181,7 +181,7 @@ class BasePlugin(object):
scoped_auth_ref = scoped_auth.get_access(session)
except (keystone_exceptions.ClientException,
keystone_exceptions.AuthorizationFailure):
LOG.info('Attempted scope to project %s failed, will attempt'
LOG.info('Attempted scope to project %s failed, will attempt '
'to scope to another project.', project.name)
pass
else:
@ -229,7 +229,7 @@ class BasePlugin(object):
domain_auth_ref = domain_auth.get_access(session)
except (keystone_exceptions.ClientException,
keystone_exceptions.AuthorizationFailure):
LOG.info('Attempted scope to domain %s failed, will attempt'
LOG.info('Attempted scope to domain %s failed, will attempt '
'to scope to another domain.', domain_name)
pass
else: