summaryrefslogtreecommitdiffstats
path: root/ipalib/__init__.py
diff options
context:
space:
mode:
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