In message <[EMAIL PROTECTED]>, [EMAIL PROTECTED] wrote: > class Channel: > name = '' > sample = []
These are class variables, not instance variables. Take them out, and ... > def __init__(self, name): > self.name = name ... add this line to the above function self.sample = [] -- http://mail.python.org/mailman/listinfo/python-list