Django

Code

Changeset 7460

Show
Ignore:
Timestamp:
04/25/08 10:01:59 (2 months ago)
Author:
mtredinnick
Message:

queryset-refactor: Fixed a typo that was shown up by some simplification refactoring.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/branches/queryset-refactor/django/db/models/sql/where.py

    r7444 r7460  
    6262                    format = '%s' 
    6363            except EmptyResultSet: 
    64                 if self.connector == AND and not node.negated: 
     64                if node.connector == AND and not node.negated: 
    6565                    # We can bail out early in this particular case (only). 
    6666                    raise