OOPS, turns out I had a post_save receiver creating the reciprocal rel. So
this is not a django problem.
On Wednesday, August 29, 2012 1:40:52 PM UTC-7, Hobson Lane wrote:
>
> In django 1.4, my model save() gets called for ManyToManyField "through"
> models for loa
In django 1.4, my model save() gets called for ManyToManyField "through"
models for loaddata on that model:
class Entity(models.Model):
related_entities = models.ManyToManyField('self',
through='EntityRelationship', symmetrical=False, related_name='related_to+')
class Entity