summaryrefslogtreecommitdiffstats
path: root/ipalib/plugable.py
diff options
context:
space:
mode:
authorJason Gerard DeRose <jderose@redhat.com>2008-08-01 20:58:48 +0000
committerJason Gerard DeRose <jderose@redhat.com>2008-08-01 20:58:48 +0000
commita0f480a414d2aa3a5f79e77026ff9183c1dd3a48 (patch)
treefc2641894fc559564fb1a94940b082841de44eb2 /ipalib/plugable.py
parentf3762a76c0824296e90385eac27455aaf06af32d (diff)
downloadfreeipa.git-a0f480a414d2aa3a5f79e77026ff9183c1dd3a48.tar.gz
freeipa.git-a0f480a414d2aa3a5f79e77026ff9183c1dd3a48.tar.xz
freeipa.git-a0f480a414d2aa3a5f79e77026ff9183c1dd3a48.zip
41: New plugable.NameSpace now has attributes set for each member; updated unit tests
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 4923c621..9025c1db 100644
--- a/ipalib/plugable.py
+++ b/ipalib/plugable.py
@@ -142,6 +142,7 @@ class NameSpace(ReadOnly):
object.__setattr__(self, '_NameSpace__hname', {})
for item in self.__items:
+ object.__setattr__(self, item.name, item)
for (key, d) in [
(item.name, self.__pname),
(str(item), self.__hname),