On Mon, Apr 27, 2009 at 11:27 AM, Alex Gaynor <alex.gay...@gmail.com> wrote:

> The issues if the method, it's nonsensical and doesn't correspond to
> anything(you are instantiating models.Model with save as the first
> argument), in Python the correct way to call the parent class's method is:
>
> super(MyClass, self).save(*args, **kwargs)

It was an example, complete with a typo.  It should have been:

def save(self, *args):
  models.Model.save(self, *args)
  category = Category.objects.all()[0]
  self.categories.add(category)

However, that point is not the problem.  Even with the proper syntax,
it doesn't save the ManyToMany relationship.

-- 
Adam Olsen
SendOutCards.com
http://www.vimtips.org
http://last.fm/user/synic

--~--~---------~--~----~------------~-------~--~----~
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