Ticket #11116: 11116_proxy_model_delete2.diff
File 11116_proxy_model_delete2.diff, 673 bytes (added by , 15 years ago) |
---|
-
django/db/models/base.py
538 538 # traversing to the most remote parent classes -- those with no parents 539 539 # themselves -- and then adding those instances to the collection. That 540 540 # will include all the child instances down to "self". 541 parent_stack = self._meta.parents.values()541 parent_stack = filter(None, self._meta.parents.values()) 542 542 while parent_stack: 543 543 link = parent_stack.pop() 544 544 parent_obj = getattr(self, link.name)