summaryrefslogtreecommitdiffstats
path: root/ipalib/plugable.py
diff options
context:
space:
mode:
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)