Django

Code

Changeset 6126

Show
Ignore:
Timestamp:
09/13/07 09:41:38 (1 year ago)
Author:
adrian
Message:

Fixed #5409 -- Fixed logic error in docs/db-api.txt. Thanks, David Paccoud

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/db-api.txt

    r6027 r6126  
    482482 
    483483This example excludes all entries whose ``pub_date`` is later than 2005-1-3 
    484 AND whose headline is NOT "Hello":: 
     484OR whose headline is "Hello":: 
    485485 
    486486    Entry.objects.exclude(pub_date__gt=datetime.date(2005, 1, 3)).exclude(headline='Hello')