﻿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
14418	lazy instances are not resolved to string when used as Exception value	Djoume Salvetti	nobody	"Hi,

If in my django application I raise an Exception with a lazy string as value, the django 500 handler won't display the Exception class but will display instead ""<django.utils.functional.__proxy__ object at 0x8e10bac>""

Here is what I believe to be the minimal code to reproduce the issue
{{{
>>> from django.utils.translation import ugettext, ugettext_lazy
>>> print Exception(ugettext(u'test'))
test
>>> print Exception(ugettext_lazy(u'test'))
<django.utils.functional.__proxy__ object at 0x88ca4ac>
}}}

Should this be considered a bug in django or lazy string are not supported as exception value?
"		closed	Uncategorized	1.2		wontfix			Unreviewed	0	0	0	0	0	0
