def __init__(self): super(Document, self).__init__(self)Don't pass self to __init__() -- should be:
Ahh... much better. Thanks! Tobiah --
def __init__(self): super(Document, self).__init__(self)Don't pass self to __init__() -- should be:
Ahh... much better. Thanks! Tobiah --