From 0cfb0e191ad878d1b22e98ce484bf3048f7138c2 Mon Sep 17 00:00:00 2001 From: Jason Gerard DeRose Date: Fri, 23 Jan 2009 15:53:45 -0700 Subject: Removed the depreciated Context and LazyContext classes --- ipaserver/plugins/b_ldap.py | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) (limited to 'ipaserver/plugins/b_ldap.py') 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. -- cgit