﻿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
10141	exception name typo?	temoto	Tim Graham	"[http://docs.djangoproject.com/en/dev/ref/contrib/syndication/#a-complex-example]

{{{
from django.contrib.syndication.feeds import FeedDoesNotExist

class BeatFeed(Feed):
    def get_object(self, bits):
        # In case of ""/rss/beats/0613/foo/bar/baz/"", or other such clutter,
        # check that bits has only one member.
        if len(bits) != 1:
            raise ObjectDoesNotExist

}}}

Probably, it should be {{{FeedDoesNotExist}}}?"		closed	Documentation	dev		fixed			Ready for checkin	1	0	0	0	0	0
