summaryrefslogtreecommitdiffstats
path: root/ipalib/plugable.py
diff options
context:
space:
mode:
authorJason Gerard DeRose <jderose@redhat.com>2008-08-09 19:48:47 +0000
committerJason Gerard DeRose <jderose@redhat.com>2008-08-09 19:48:47 +0000
commitd7958f3fde94d20be126f4486b8d906eb38446f7 (patch)
tree557c73c6b9dd50fe63eb6e04a7586e76b57ef623 /ipalib/plugable.py
parent0edb22c9ac70c5acfab51318810f693d59fab955 (diff)
downloadfreeipa-d7958f3fde94d20be126f4486b8d906eb38446f7.tar.gz
freeipa-d7958f3fde94d20be126f4486b8d906eb38446f7.tar.xz
freeipa-d7958f3fde94d20be126f4486b8d906eb38446f7.zip
103: Fixed missing API.__keys assignment
Diffstat (limited to 'ipalib/plugable.py')
-rw-r--r--ipalib/plugable.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipalib/plugable.py b/ipalib/plugable.py
index 1341a98f8..b607f0fac 100644
--- a/ipalib/plugable.py
+++ b/ipalib/plugable.py
@@ -425,7 +425,7 @@ class Registrar(ReadOnly):
class API(ReadOnly):
def __init__(self, *allowed):
- keys = tuple(b.__name__ for b in allowed)
+ self.__keys = tuple(b.__name__ for b in allowed)
self.register = Registrar(*allowed)
self.__lock__()