Fixed #13099 - incorrect SQL for `exclude()` example

Thanks to istruble for the report.



git-svn-id: http://code.djangoproject.com/svn/django/trunk@12936 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Luke Plant 2010-04-06 14:35:36 +00:00
parent 520ce1bab3
commit 97b9c7582b
1 changed files with 1 additions and 1 deletions

View File

@ -174,7 +174,7 @@ In SQL terms, that evaluates to::
SELECT ...
WHERE NOT pub_date > '2005-1-3'
OR NOT headline = 'Hello'
AND NOT headline = 'Hello'
Note the second example is more restrictive.