mirror of
https://github.com/jazzband/django-configurations.git
synced 2026-05-22 22:25:50 +00:00
10 lines
402 B
Python
10 lines
402 B
Python
from . import importer
|
|
from .errors import with_error_handler
|
|
|
|
importer.install(check_options=True)
|
|
|
|
from django.core.management import (execute_from_command_line as dj_execute_from_command_line, # noqa
|
|
call_command as dj_call_command)
|
|
|
|
execute_from_command_line = with_error_handler(dj_execute_from_command_line)
|
|
call_command = with_error_handler(dj_call_command)
|