summaryrefslogtreecommitdiffstats
path: root/ipalib/__init__.py
diff options
context:
space:
mode:
authorJason Gerard DeRose <jderose@redhat.com>2009-01-23 15:53:45 -0700
committerRob Crittenden <rcritten@redhat.com>2009-02-03 15:29:03 -0500
commit0cfb0e191ad878d1b22e98ce484bf3048f7138c2 (patch)
treeba468c284cd37e89f649d6de31c58000bcca64dc /ipalib/__init__.py
parentf7375bb6090f32c3feb3d71e196ed01ee19fecc8 (diff)
downloadfreeipa.git-0cfb0e191ad878d1b22e98ce484bf3048f7138c2.tar.gz
freeipa.git-0cfb0e191ad878d1b22e98ce484bf3048f7138c2.tar.xz
freeipa.git-0cfb0e191ad878d1b22e98ce484bf3048f7138c2.zip
Removed the depreciated Context and LazyContext classes
Diffstat (limited to 'ipalib/__init__.py')
-rw-r--r--ipalib/__init__.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/ipalib/__init__.py b/ipalib/__init__.py
index 7fd886cb..7754c428 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