Changeset 8829
- Timestamp:
- 09/01/08 19:20:10 (3 months ago)
- Files:
-
- django/trunk/django/db/models/sql/query.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/db/models/sql/query.py
r8827 r8829 661 661 must_promote = False 662 662 for join in joins: 663 must_promote = self.promote_alias(join, must_promote) 663 if self.promote_alias(join, must_promote): 664 must_promote = True 664 665 665 666 # If we get to this point and the field is a relation to another model,
