diff options
| author | Rob Crittenden <rcritten@redhat.com> | 2009-02-13 14:12:34 -0500 |
|---|---|---|
| committer | Rob Crittenden <rcritten@redhat.com> | 2009-02-13 14:12:34 -0500 |
| commit | 2df3ef411d83f8e1a2a822b7fd130ea7130381be (patch) | |
| tree | 7af210859d5ac20d99008dd2624ed68b0b5b43bb /ipaserver/plugins | |
| parent | c9311da3fd74133fba37c7194d713e03e463a3e3 (diff) | |
| download | freeipa-2df3ef411d83f8e1a2a822b7fd130ea7130381be.tar.gz freeipa-2df3ef411d83f8e1a2a822b7fd130ea7130381be.tar.xz freeipa-2df3ef411d83f8e1a2a822b7fd130ea7130381be.zip | |
Fix AttributeError on python 2.4 when referencing _ldap.dn
Diffstat (limited to 'ipaserver/plugins')
| -rw-r--r-- | ipaserver/plugins/b_ldap.py | 1 |
1 files changed, 1 insertions, 0 deletions
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 |
