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 /ipalib/__init__.py | |
parent | f7375bb6090f32c3feb3d71e196ed01ee19fecc8 (diff) | |
download | freeipa-0cfb0e191ad878d1b22e98ce484bf3048f7138c2.tar.gz freeipa-0cfb0e191ad878d1b22e98ce484bf3048f7138c2.tar.xz freeipa-0cfb0e191ad878d1b22e98ce484bf3048f7138c2.zip |
Removed the depreciated Context and LazyContext classes
Diffstat (limited to 'ipalib/__init__.py')
-rw-r--r-- | ipalib/__init__.py | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/ipalib/__init__.py b/ipalib/__init__.py index 7fd886cbc..7754c4282 100644 --- a/ipalib/__init__.py +++ b/ipalib/__init__.py @@ -871,7 +871,7 @@ freeIPA.org: ''' import plugable -from backend import Backend, Context +from backend import Backend from frontend import Command, LocalOrRemote, Application from frontend import Object, Method, Property from crud import Create, Retrieve, Update, Delete, Search @@ -902,12 +902,9 @@ def create_api(mode='dummy'): - `frontend.Application` - `backend.Backend` - - - `backend.Context` """ api = plugable.API( - Command, Object, Method, Property, Application, - Backend, Context, + Command, Object, Method, Property, Application, Backend ) if mode is not None: api.env.mode = mode |