View Single Post
Posts: 456 | Thanked: 1,580 times | Joined on Dec 2009
#297
Originally Posted by Mentalist Traceur View Post
So am I changing
def __init__([something in here])
or
clock.Clock.__init__([something in here])
or both?
You need to change both:
Code:
def __init__(self, area, id)
    clock.Clock.__init__(self, area, id)
__________________
 

The Following User Says Thank You to Wonko For This Useful Post: