mirror of
https://github.com/jazzband/django-configurations.git
synced 2026-05-14 02:23:12 +00:00
11 lines
316 B
Python
11 lines
316 B
Python
from . import importer
|
|
from .errors import with_error_handler
|
|
|
|
importer.install()
|
|
|
|
from django.core.wsgi import get_wsgi_application as dj_get_wsgi_application # noqa: E402
|
|
|
|
get_wsgi_application = with_error_handler(dj_get_wsgi_application)
|
|
|
|
# this is just for the crazy ones
|
|
application = get_wsgi_application()
|