Changeset 7460
- Timestamp:
- 04/25/08 10:01:59 (2 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/branches/queryset-refactor/django/db/models/sql/where.py
r7444 r7460 62 62 format = '%s' 63 63 except EmptyResultSet: 64 if self.connector == AND and not node.negated:64 if node.connector == AND and not node.negated: 65 65 # We can bail out early in this particular case (only). 66 66 raise
