Hi,
> defsave(self, *args):
>    models.Model(save, *args)
>    category = Category.objects.all()[0]
>    self.categories.add(category)
>
> This does not work, I'm sure it's saving ManyToMany relationships
> later on in thesaveprocess.  Is there a way to make this work?
>


IMHO, it's make sense : you call the parent save method before
defining new categories on it. How parent save method could know
anything about these new categories ?

Have you try :

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

Frédéric

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