﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
10631	Documentation: SQL for second exclude example is incorrect	Stuart Colville	nobody	"See http://docs.djangoproject.com/en/dev/ref/models/querysets/#exclude-kwargs

The second example has AND instead of OR.

{{{
SELECT ...
WHERE NOT pub_date > '2005-1-3'
AND NOT headline = 'Hello'
}}}

Should be:

{{{
SELECT ...
WHERE NOT pub_date > '2005-1-3'
OR NOT headline = 'Hello'
}}}"		closed	Documentation	1.0		invalid			Ready for checkin	1	0	0	0	0	0
