Re: TypeError: unbound method must be called with class instance 1st argument

2006-12-20 Thread void . no . spam . com
Matimus wrote: > > Can someone please explain why I get the following error: > > The following line: > threading.Thread.__init__() > Should be written as: > threading.Thread.__init__(self) Thank you! -- http://mail.python.org/mailman/listinfo/python-list

Re: TypeError: unbound method must be called with class instance 1st argument

2006-12-20 Thread Matimus
> Can someone please explain why I get the following error: The following line: threading.Thread.__init__() Should be written as: threading.Thread.__init__(self) -- http://mail.python.org/mailman/listinfo/python-list

TypeError: unbound method must be called with class instance 1st argument

2006-12-20 Thread void . no . spam . com
;, line 104, in ? File "/full/path/to/file/GenerateData.py", line 34, in __init__ TypeError: unbound method must be called with class instance 1st argument Here are the important pieces of my GenerateData.py script. Note that "scriptinterface" is something provided by the prod