Ticket #16572: 16572.patch
File 16572.patch, 434 bytes (added by , 13 years ago) |
---|
-
django/db/models/options.py
436 436 """ 437 437 if not self.parents: 438 438 return 439 if model._meta is self: 440 return 439 441 if model in self.parents: 440 442 return [model] 441 443 for parent in self.parents: