﻿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
24504	StandardError is not defined in django.utils.dictconfig	Benjamin Hedrich	nobody	"I'm on Python 3.4.1 with Django 1.7.4. 

When using django.utils.dictconfig to configure custom logging and this function cannot configure a logging formatter than the code will ""except"" an SystemError which is not defined in this module or in __builtin__.

I fixed this temporarily to fix my logging config with this workaround:

{{{
from django.utils import dictconfig
class StandardError(Exception):
    pass

dictconfig.StandardError = StandardError
}}}

"	Uncategorized	closed	Utilities	1.7	Normal	wontfix	Python 3, logging, utils		Unreviewed	0	0	0	0	0	0
