From e0af20fb0f172bad3c99e643f8b17d1870c4d512 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sun, 15 Jan 2006 06:10:02 +0000 Subject: [PATCH] Fixed #1064 -- Fixed bug in set_many_to_many() for ManyToManyField pointing at a OneToOneField. Thanks, bruce@cubik.org and Luminosity git-svn-id: http://code.djangoproject.com/svn/django/trunk@1976 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/core/meta/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/core/meta/__init__.py b/django/core/meta/__init__.py index dd048d46379..e458ba2272f 100644 --- a/django/core/meta/__init__.py +++ b/django/core/meta/__init__.py @@ -1135,7 +1135,7 @@ def method_get_many_to_many(field_with_rel, self): # Handles setting many-to-many relationships. # Example: Poll.set_sites() def method_set_many_to_many(rel_field, self, id_list): - current_ids = [obj.id for obj in method_get_many_to_many(rel_field, self)] + current_ids = [getattr(obj, obj._meta.pk.attname) for obj in method_get_many_to_many(rel_field, self)] ids_to_add, ids_to_delete = dict([(i, 1) for i in id_list]), [] for current_id in current_ids: if current_id in id_list: