﻿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
17589	mistype in -> Django 1.1 1.2 1.3 dev - QuerySet API reference - exclude(**kwargs)	g1ra	nobody	"in documentation https://docs.djangoproject.com/en/1.3/ref/models/querysets/#exclude 
end of the /exclude/ QuerySet refinement method
Django 1.0 is correct, but other version contains mistype.

Bad:

SELECT ...
WHERE NOT pub_date > '2005-1-3'
__AND__ NOT headline = 'Hello'



Correct (in Django 1.0):

SELECT ...
WHERE NOT pub_date > '2005-1-3'
__OR__ NOT headline = 'Hello'


"	Uncategorized	closed	Documentation	1.3	Normal	invalid	exclude mistype		Unreviewed	0	0	0	0	0	0
