From 4767fbdb9034aad2de28826161a76e955b721edc Mon Sep 17 00:00:00 2001 From: BubaVV Date: Fri, 29 Jun 2018 15:19:45 +0300 Subject: [PATCH] Fix log message formatting Multi-line literal misses a space Change-Id: I6c076c5e886f518f14e6bd756071b662484895a1 --- openstack_auth/plugin/base.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openstack_auth/plugin/base.py b/openstack_auth/plugin/base.py index 829a403c4f..a161cf1cc3 100644 --- a/openstack_auth/plugin/base.py +++ b/openstack_auth/plugin/base.py @@ -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: