TypeError: unbound method must be called with class instance 1st argument
Matimus
mccredie at gmail.com
Wed Dec 20 19:27:37 EST 2006
> Can someone please explain why I get the following error:
The following line:
threading.Thread.__init__()
Should be written as:
threading.Thread.__init__(self)
More information about the Python-list
mailing list