From 5c9437b9e683a5f721595a5e312e4d61a11b60c7 Mon Sep 17 00:00:00 2001 From: Jason Gerard DeRose Date: Tue, 13 Oct 2009 22:23:19 -0600 Subject: Removed util.add_global_options() and frontend.Application --- ipalib/__init__.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'ipalib/__init__.py') diff --git a/ipalib/__init__.py b/ipalib/__init__.py index 3b177daa..d263d98a 100644 --- a/ipalib/__init__.py +++ b/ipalib/__init__.py @@ -866,7 +866,7 @@ freeIPA.org: import os import plugable from backend import Backend -from frontend import Command, LocalOrRemote, Application +from frontend import Command, LocalOrRemote from frontend import Object, Method, Property from crud import Create, Retrieve, Update, Delete, Search from parameters import DefaultFrom, Bool, Flag, Int, Float, Bytes, Str, Password,List @@ -900,13 +900,9 @@ def create_api(mode='dummy'): - `frontend.Property` - - `frontend.Application` - - `backend.Backend` """ - api = plugable.API( - Command, Object, Method, Property, Application, Backend - ) + api = plugable.API(Command, Object, Method, Property, Backend) if mode is not None: api.env.mode = mode assert mode != 'production' -- cgit