﻿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
28648	Error in chaining filters example in documentation	Dave Jagoda	Stefan Schneider	"https://docs.djangoproject.com/en/1.11/topics/db/queries/#chaining-filters

(Same error exists in 1.10 and perhaps others)

{{{
>>> Entry.objects.filter(
...     headline__startswith='What'
... ).exclude(
...     pub_date__gte=datetime.date.today()
... ).filter(
...     pub_date__gte=datetime(2005, 1, 30)
... )
}}}

I believe should contain this instead:
{{{
pub_date__gte=datetime.date(2005, 1, 30)
}}}"	Bug	closed	Documentation	dev	Normal	fixed		Dave Jagoda	Ready for checkin	0	0	0	0	1	0
