From 2df3ef411d83f8e1a2a822b7fd130ea7130381be Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Fri, 13 Feb 2009 14:12:34 -0500 Subject: Fix AttributeError on python 2.4 when referencing _ldap.dn --- ipaserver/plugins/b_ldap.py | 1 + 1 file changed, 1 insertion(+) (limited to 'ipaserver/plugins/b_ldap.py') diff --git a/ipaserver/plugins/b_ldap.py b/ipaserver/plugins/b_ldap.py index c205f414..4e5f40a3 100644 --- a/ipaserver/plugins/b_ldap.py +++ b/ipaserver/plugins/b_ldap.py @@ -25,6 +25,7 @@ This wraps the python-ldap bindings. """ import ldap as _ldap +import ldap.dn from ipalib import api from ipalib import errors2 from ipalib.crud import CrudBackend -- cgit