diff options
author | Jason Gerard DeRose <jderose@redhat.com> | 2008-12-21 19:58:48 -0700 |
---|---|---|
committer | Jason Gerard DeRose <jderose@redhat.com> | 2008-12-21 19:58:48 -0700 |
commit | f82c48f775d1a8440a19d2040dbc8da51cec04b1 (patch) | |
tree | e61cc0f4eb63f9fa7db724666bdd52500f4ef3b6 /ipalib | |
parent | 9d091c98f1f1bf7bacf49e9eaaa18ba8bb1bfd70 (diff) | |
download | freeipa-f82c48f775d1a8440a19d2040dbc8da51cec04b1.tar.gz freeipa-f82c48f775d1a8440a19d2040dbc8da51cec04b1.tar.xz freeipa-f82c48f775d1a8440a19d2040dbc8da51cec04b1.zip |
Added note in Plugin.set_api() about Plugin.log attribute being depreciated
Diffstat (limited to 'ipalib')
-rw-r--r-- | ipalib/plugable.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ipalib/plugable.py b/ipalib/plugable.py index 019386c37..01b9b33c8 100644 --- a/ipalib/plugable.py +++ b/ipalib/plugable.py @@ -367,6 +367,7 @@ class Plugin(ReadOnly): for name in api: assert not hasattr(self, name) setattr(self, name, api[name]) + # FIXME: the 'log' attribute is depreciated. See Plugin.__init__() for name in ('env', 'context', 'log'): if hasattr(api, name): assert not hasattr(self, name) |