Skip to content

Commit

Permalink
Fixed #5409 -- Fixed logic error in docs/db-api.txt. Thanks, David Pa…
Browse files Browse the repository at this point in the history
…ccoud

git-svn-id: http://code.djangoproject.com/svn/django/trunk@6126 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
adrianholovaty committed Sep 13, 2007
1 parent a31bbda commit 28d27a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/db-api.txt
Expand Up @@ -481,7 +481,7 @@ In SQL terms, that evaluates to::
WHERE NOT (pub_date > '2005-1-3' AND headline = 'Hello')

This example excludes all entries whose ``pub_date`` is later than 2005-1-3
AND whose headline is NOT "Hello"::
OR whose headline is "Hello"::

Entry.objects.exclude(pub_date__gt=datetime.date(2005, 1, 3)).exclude(headline='Hello')

Expand Down

0 comments on commit 28d27a7

Please sign in to comment.