diff options
author | Jason Gerard DeRose <jderose@redhat.com> | 2008-10-27 01:35:40 -0600 |
---|---|---|
committer | Jason Gerard DeRose <jderose@redhat.com> | 2008-10-27 01:35:40 -0600 |
commit | d76202fea37e63fbc660ed2cf2059f455b8e2213 (patch) | |
tree | 90144648d8c0904c048c6e61e54ec4f9543b7689 /ipalib/plugable.py | |
parent | 25a7df9615058372b81a41df6baa2c4692df0063 (diff) | |
download | freeipa.git-d76202fea37e63fbc660ed2cf2059f455b8e2213.tar.gz freeipa.git-d76202fea37e63fbc660ed2cf2059f455b8e2213.tar.xz freeipa.git-d76202fea37e63fbc660ed2cf2059f455b8e2213.zip |
API.env is now an Env instance rather than an Environment instance
Diffstat (limited to 'ipalib/plugable.py')
-rw-r--r-- | ipalib/plugable.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ipalib/plugable.py b/ipalib/plugable.py index 36721157..59484989 100644 --- a/ipalib/plugable.py +++ b/ipalib/plugable.py @@ -29,7 +29,8 @@ import re import inspect import errors from errors import check_type, check_isinstance -from config import Environment +from config import Environment, Env +import constants import util @@ -713,7 +714,7 @@ class API(DictProxy): self.__d = dict() self.__done = set() self.register = Registrar(*allowed) - self.env = Environment() + self.env = Env super(API, self).__init__(self.__d) def __doing(self, name): |