﻿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
12345	incorrect invoking in the example of Multi-table inheritance section	anonymous	nobody	"Refs http://code.djangoproject.com/browser/django/trunk/docs/topics/db/models.txt?rev=10818#L926 . 
{{{
p = Place.objects.filter(name=""Bob's Cafe"")
# If Bob's Cafe is a Restaurant object, this will give the child class:
>>> p.restaurant
<Restaurant: ...>
}}}
p is a !QuerySet here and p.restaurant has no sense. following maybe better.
{{{
p = Place.objects.get(name=""Bob's Cafe"")
}}}"		closed	Documentation	dev		fixed	typo		Ready for checkin	1	0	0	0	0	0
