diff options
author | Jason Gerard DeRose <jderose@redhat.com> | 2009-01-23 15:53:45 -0700 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2009-02-03 15:29:03 -0500 |
commit | 0cfb0e191ad878d1b22e98ce484bf3048f7138c2 (patch) | |
tree | ba468c284cd37e89f649d6de31c58000bcca64dc /ipaserver/plugins/b_ldap.py | |
parent | f7375bb6090f32c3feb3d71e196ed01ee19fecc8 (diff) | |
download | freeipa.git-0cfb0e191ad878d1b22e98ce484bf3048f7138c2.tar.gz freeipa.git-0cfb0e191ad878d1b22e98ce484bf3048f7138c2.tar.xz freeipa.git-0cfb0e191ad878d1b22e98ce484bf3048f7138c2.zip |
Removed the depreciated Context and LazyContext classes
Diffstat (limited to 'ipaserver/plugins/b_ldap.py')
-rw-r--r-- | ipaserver/plugins/b_ldap.py | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/ipaserver/plugins/b_ldap.py b/ipaserver/plugins/b_ldap.py index 9e06ce51..54766bbb 100644 --- a/ipaserver/plugins/b_ldap.py +++ b/ipaserver/plugins/b_ldap.py @@ -25,24 +25,13 @@ This wraps the python-ldap bindings. """ import ldap as _ldap -from ipalib import api, Context +from ipalib import api from ipalib import errors from ipalib.crud import CrudBackend from ipaserver import servercore from ipaserver import ipaldap -class conn(Context): - """ - Thread-local LDAP connection. - """ - - def get_value(self): - return 'it worked' - -api.register(conn) - - class ldap(CrudBackend): """ LDAP backend plugin. |