From d7958f3fde94d20be126f4486b8d906eb38446f7 Mon Sep 17 00:00:00 2001 From: Jason Gerard DeRose Date: Sat, 9 Aug 2008 19:48:47 +0000 Subject: 103: Fixed missing API.__keys assignment --- ipalib/plugable.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ipalib/plugable.py') 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__() -- cgit