This should fix the problems with children of ChannelValues.

This commit is contained in:
Jeremy Fincher 2004-08-20 03:43:02 +00:00
parent 54995c84bc
commit e844d9c943

View File

@ -164,7 +164,7 @@ class Group(object):
v = self.__class__(self._default, self.help) v = self.__class__(self._default, self.help)
v.set(s) v.set(s)
v.__class__ = self.X v.__class__ = self.X
v._supplyDefault = False #v._supplyDefault = False
v.help = '' # Clear this so it doesn't print a bazillion times. v.help = '' # Clear this so it doesn't print a bazillion times.
self.register(attr, v) self.register(attr, v)
return v return v