Remove trailing space from string

There was an extra space at the end of the debug log string.

Change-Id: I96a231d136a829e049a4e026ed07ff3730eeb388
This commit is contained in:
Brant Knudson 2014-09-08 15:42:27 -05:00
parent 249d83529a
commit 60b4b15e51
1 changed files with 1 additions and 1 deletions

View File

@ -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: