Files
edx-platform/openedx/core/djangoapps/util/apps.py
2017-10-27 13:19:12 -04:00

15 lines
336 B
Python

"""
Configuration for the openedx.core.djangoapps.util Django application
"""
from django.apps import AppConfig
class UtilConfig(AppConfig):
"""
Let Django know that this is an app with management commands.
"""
label = 'open_edx_util'
name = 'openedx.core.djangoapps.util'
verbose_name = 'Open edX Utilities'