diff options
author | Dolph Mathews <dolph.mathews@gmail.com> | 2013-03-19 21:14:04 -0500 |
---|---|---|
committer | Dolph Mathews <dolph.mathews@gmail.com> | 2013-03-19 21:14:49 -0500 |
commit | 533bb01947199e20b840917ab5ee387451b174a0 (patch) | |
tree | 07b025467faf053161512a6b78bad2055f569844 | |
parent | 5cb8e1f2e5e12cf7e8c6bce91af53b901f6254a9 (diff) | |
download | keystone-533bb01947199e20b840917ab5ee387451b174a0.tar.gz keystone-533bb01947199e20b840917ab5ee387451b174a0.tar.xz keystone-533bb01947199e20b840917ab5ee387451b174a0.zip |
Correct spacing in warning msg
Change-Id: I0a52287672372a23c3952c5eb382f9dddc5a3813
-rw-r--r-- | keystone/common/ldap/core.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/keystone/common/ldap/core.py b/keystone/common/ldap/core.py index a8b4fdab..9ba9e059 100644 --- a/keystone/common/ldap/core.py +++ b/keystone/common/ldap/core.py @@ -421,9 +421,9 @@ class LdapWrapper(object): # Exit condition no more data on server break else: - LOG.warning(_('LDAP Server does not support paging.' - 'Disable paging in keystone.conf to' - 'avoid this message')) + LOG.warning(_('LDAP Server does not support paging. ' + 'Disable paging in keystone.conf to ' + 'avoid this message.')) self._disable_paging() break return res |