> > def __init__(self): > super(Document, self).__init__(self) >
Don't pass self to __init__() -- should be:
super(Document, self).__init__()
Anthony
--
> > def __init__(self): > super(Document, self).__init__(self) >
Don't pass self to __init__() -- should be:
super(Document, self).__init__()
Anthony
--