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:
Calen Pennington
2020-09-29 14:58:06 -04:00
committed by Calen Pennington
parent 9281efc4b9
commit 51c526ea83
4 changed files with 4 additions and 4 deletions

View File

@@ -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):