Files
edx-platform/openedx/core/djangoapps/theming/apps.py
Troy Sankey d11d7554c3 Move theming settings validation registration into ready method
This avoids premature registration of django checks which could break
django 1.11 startup.
2017-11-03 12:23:54 -04:00

12 lines
245 B
Python

from django.apps import AppConfig
class ThemingConfig(AppConfig):
name = 'openedx.core.djangoapps.theming'
verbose_name = "Theming"
def ready(self):
# settings validations related to theming.
from . import checks