summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrant Knudson <bknudson@us.ibm.com>2014-09-08 15:42:27 -0500
committerBrant Knudson <bknudson@us.ibm.com>2014-09-08 15:42:27 -0500
commit60b4b15e51078da5b1409f39d6e5a13f75fe63ec (patch)
tree8c43a86c809eb064009fe8bc98253e400b5f1b49
parent249d83529af0c746c6980aa0dbd2287bc8de345e (diff)
downloadkeystone-60b4b15e51078da5b1409f39d6e5a13f75fe63ec.tar.gz
Remove trailing space from string
There was an extra space at the end of the debug log string. Change-Id: I96a231d136a829e049a4e026ed07ff3730eeb388
-rw-r--r--keystone/common/ldap/core.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/keystone/common/ldap/core.py b/keystone/common/ldap/core.py
index a78b91552..9eefecdf6 100644
--- a/keystone/common/ldap/core.py
+++ b/keystone/common/ldap/core.py
@@ -155,7 +155,7 @@ def convert_ldap_result(ldap_result):
try:
ldap_attrs[kind] = [ldap2py(x) for x in values]
except UnicodeDecodeError:
- LOG.debug('Unable to decode value for attribute %s ', kind)
+ LOG.debug('Unable to decode value for attribute %s', kind)
py_result.append((utf8_decode(dn), ldap_attrs))
if at_least_one_referral: