Skip to content

Commit

Permalink
Remove trailing space from string
Browse files Browse the repository at this point in the history
There was an extra space at the end of the debug log string.

Change-Id: I96a231d136a829e049a4e026ed07ff3730eeb388
  • Loading branch information
Brant Knudson committed Sep 8, 2014
1 parent 249d835 commit 60b4b15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion keystone/common/ldap/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 60b4b15

Please sign in to comment.