From bb9691099b7b025fc491279314d8803f4fa3b571 Mon Sep 17 00:00:00 2001 From: Jason Gerard DeRose Date: Mon, 27 Oct 2008 15:36:41 -0600 Subject: API.bootstrap() now calls Env._finalize_core(); updated unit tests --- ipalib/plugable.py | 1 + 1 file changed, 1 insertion(+) (limited to 'ipalib/plugable.py') diff --git a/ipalib/plugable.py b/ipalib/plugable.py index f704077a..6fe22429 100644 --- a/ipalib/plugable.py +++ b/ipalib/plugable.py @@ -737,6 +737,7 @@ class API(DictProxy): """ self.__doing('bootstrap') self.env._bootstrap(**overrides) + self.env._finalize_core(**dict(constants.DEFAULT_CONFIG)) def load_plugins(self, dry_run=False): """ -- cgit