Skip to content

Commit

Permalink
Fixed #452 -- Fixed bug in generated DB API for models that have two …
Browse files Browse the repository at this point in the history
…ManyToManyFields to the same related model.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@1516 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
adrianholovaty committed Dec 1, 2005
1 parent fa9cbe5 commit a58dc0d
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions django/core/meta/__init__.py
Expand Up @@ -532,13 +532,9 @@ def get_all_related_many_to_many_objects(self):
rel_objs = []
for mod in module_list:
for klass in mod._MODELS:
try:
for f in klass._meta.many_to_many:
if f.rel and self == f.rel.to:
rel_objs.append(RelatedObject(self, klass._meta, f))
raise StopIteration
except StopIteration:
continue
for f in klass._meta.many_to_many:
if f.rel and self == f.rel.to:
rel_objs.append(RelatedObject(self, klass._meta, f))
return rel_objs

def get_ordered_objects(self):
Expand Down

0 comments on commit a58dc0d

Please sign in to comment.