Dj Gilcrease wrote:
> What do you need to do in __init__
> 
You don't actually need to fo anything at all! As you have the code now
you're calling the superclass's __init__ with two arguments: the newly
created instance, a tuple of the other positional args (if any) and a
dict of the keyword arguments (if any).

Change the method to

    def __init__(self, *args, **kwargs):
        super(Fails, self).__init__(*args, **kwargs)

This will convert the call so it has the same number of positional
arguments and the same keyowrd arguments as the Fails.__init__() call.

And you might do well to take a look at the Python documentation if you
aren't certain of this kind of stuff - it's used quite a bit once you
get into Django's internals, as you seem determined to do!

Of course your __init__ doesn't currently do anything except call the
superclass's __init__, so you could just omit it altogether. But I have
assumed you have plans for it ...

regards
 Steve
-- 
Steve Holden        +1 571 484 6266   +1 800 494 3119
Holden Web LLC              http://www.holdenweb.com/

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to