From 5b2e0e2ba5808d6300de1cac743c96db0607121c Mon Sep 17 00:00:00 2001 From: Jan Cholasta Date: Mon, 4 Feb 2013 11:48:58 +0100 Subject: Remove DN normalization from the baseldap plugin. --- ipalib/plugins/automount.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'ipalib/plugins/automount.py') diff --git a/ipalib/plugins/automount.py b/ipalib/plugins/automount.py index 417d6a31..22017fb5 100644 --- a/ipalib/plugins/automount.py +++ b/ipalib/plugins/automount.py @@ -715,9 +715,7 @@ class automountkey(LDAPObject): # First we look with the information given, then try to search for # the right entry. try: - (dn, entry_attrs) = ldap.get_entry( - dn, ['*'], normalize=self.normalize_dn - ) + (dn, entry_attrs) = ldap.get_entry(dn, ['*']) except errors.NotFound: if kwargs.get('automountinformation', False): sfilter = '(&(automountkey=%s)(automountinformation=%s))' % \ -- cgit