Per the documentation, name should be the full python path to the module.
https://docs.djangoproject.com/en/2.2/ref/applications/#django.apps.AppConfig.name These packages were mis-named after the sys.path fixes.
This commit is contained in:
committed by
Calen Pennington
parent
9281efc4b9
commit
51c526ea83
@@ -15,7 +15,7 @@ class LMSInitializationConfig(AppConfig):
|
||||
"""
|
||||
Application Configuration for lms_initialization.
|
||||
"""
|
||||
name = 'lms_initialization'
|
||||
name = 'lms.djangoapps.lms_initialization'
|
||||
verbose_name = 'LMS Initialization'
|
||||
|
||||
def ready(self):
|
||||
|
||||
Reference in New Issue
Block a user