﻿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
10945	Typo in get_XXX_display() crashes runserver	Scot Hacker	nobody	"In 1.1 beta 1 SVN-10638, the following code, which is missing the parentheses in self.get_title_display() will crash runserver when an admin view is loaded. Mac OS raises a ""Python has quit unxpectedly"" dialog and a shell prompt is returned. This error should bubble up to where it can be reported in the console or browser.

{{{
class CommitteeJob(models.Model):
    title = models.CharField(choices=COMMITTEE_JOBS_CHOICES,max_length=12)
    reports_to = models.ForeignKey(BoardPosition)

    def __unicode__(self):
        return u'%s' % (self.get_title_display)
}}}
"		closed	django-admin.py runserver	1.0		wontfix	admin, runserver, get_display		Unreviewed	0	0	0	0	0	0
