In addition to what Kyle said I've also noticed I had to 'pop' custom
kwargs before passing to the super since it isn't expecting them.
try:
t = kwargs.pop('title')
except:
...
call super
... do stuff.
On Mar 27, 10:20 am, "Kyle Fox" <[EMAIL PROTECTED]> wrote:
> This is just a guess, but could it be because you're calling .save()
> (defined in models.Model) before calling __init__() on the superclass?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---