summaryrefslogtreecommitdiffstats
path: root/ipalib/plugable.py
diff options
context:
space:
mode:
authorJason Gerard DeRose <jderose@redhat.com>2008-12-21 19:58:48 -0700
committerJason Gerard DeRose <jderose@redhat.com>2008-12-21 19:58:48 -0700
commitf82c48f775d1a8440a19d2040dbc8da51cec04b1 (patch)
treee61cc0f4eb63f9fa7db724666bdd52500f4ef3b6 /ipalib/plugable.py
parent9d091c98f1f1bf7bacf49e9eaaa18ba8bb1bfd70 (diff)
downloadfreeipa-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/plugable.py')
-rw-r--r--ipalib/plugable.py1
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)