0.91-bugfixes: Revert previous, since it doesn't seem to actually solve the bug
git-svn-id: http://code.djangoproject.com/svn/django/branches/0.91-bugfixes@5648 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
e6f09afa78
commit
0417b0f17b
@ -1134,14 +1134,6 @@ def method_get_many_to_many(field_with_rel, self):
|
|||||||
# Handles setting many-to-many relationships.
|
# Handles setting many-to-many relationships.
|
||||||
# Example: Poll.set_sites()
|
# Example: Poll.set_sites()
|
||||||
def method_set_many_to_many(rel_field, self, id_list):
|
def method_set_many_to_many(rel_field, self, id_list):
|
||||||
if len(id_list) == 1 and isinstance(id_list[0], basestring) and ',' in id_list[0]:
|
|
||||||
new_id_list = []
|
|
||||||
for bit in id_list[0].split(','):
|
|
||||||
try:
|
|
||||||
new_id_list.append(int(bit.strip()))
|
|
||||||
except ValueError:
|
|
||||||
continue
|
|
||||||
id_list = new_id_list
|
|
||||||
current_ids = [getattr(obj, obj._meta.pk.attname) 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]), []
|
ids_to_add, ids_to_delete = dict([(i, 1) for i in id_list]), []
|
||||||
for current_id in current_ids:
|
for current_id in current_ids:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user