﻿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
14852	django.utils.log is incompatible with Python <= 2.5	tom@…	nobody	"Line 90 is:

reporter = ExceptionReporter(request, *exc_info, is_email=True)

Which raises a syntax error on Python 2.5 (keyword argument after the * argument) but works fine on Python 2.6.

Changing it to the following has the exact same semantics but should work on all versions:

reporter = ExceptionReporter(request, *exc_info, **{""is_email"":True})

I'm not sure if I should have attached a diff, but it seemed simpler to just paste it in seeing as it's only 1 line.

Tom"		closed	Uncategorized	1.2		duplicate			Unreviewed	0	0	0	0	0	0
