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
}}}
--
Ticket URL: <https://code.djangoproject.com/ticket/24504>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
* needs_better_patch: => 0
* needs_tests: => 0
* needs_docs: => 0
--
Ticket URL: <https://code.djangoproject.com/ticket/24504#comment:1>
* status: new => closed
* resolution: => wontfix
Comment:
`django.utils.dictconfig` is deprecated, please use Python's
`logging.config` instead.
--
Ticket URL: <https://code.djangoproject.com/ticket/24504#comment:2>