﻿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
21390	Custom Manager Documentation Error	m0nonoke	nobody	"The documentation for trunk has a section on modifying initial querysets for custom managers here;

https://docs.djangoproject.com/en/dev/topics/db/managers/#modifying-initial-manager-querysets

The code snippets and commentary as describe the hook as follows
{{{
class DahlBookManager(models.Manager):
    def get_queryset(self):
        return super(DahlBookManager, self).get_queryset().filter(author='Roald Dahl')

}}}

However this should be 

{{{
class DahlBookManager(models.Manager):
    def get_query_set(self):
        return super(DahlBookManager, self).get_query_set().filter(author='Roald Dahl')

}}}

NB the {{{ get_query_set }}} extra underscore

"	Bug	closed	Documentation	1.5	Normal	invalid			Unreviewed	0	0	0	0	1	0
