﻿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
32260	handler500 as a Class-based view raises SystemCheckError	Daniyal Abbasi	nobody	"Setting handler500 as a Class-Based view raises the following error which running checks.


{{{
$ python manage.py check
SystemCheckError: System check identified some issues:

ERRORS:
?: (urls.E007) The custom handler500 view 'path.to.my.MyView' does not take the correct number of arguments (request).
}}}

In my root urls.py, I have the following configuration,

{{{
handler404 = MyView.as_view()
handler500 = MyView.as_view()
}}}






"	Bug	new	Core (System checks)	3.1	Normal				Unreviewed	0	0	0	0	0	0
