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
@@ -10,7 +10,7 @@ class EmailMarketingConfig(AppConfig):
|
||||
"""
|
||||
Configuration class for the email_marketing Django application.
|
||||
"""
|
||||
name = 'email_marketing'
|
||||
name = 'lms.djangoapps.email_marketing'
|
||||
verbose_name = "Email Marketing"
|
||||
|
||||
def ready(self):
|
||||
|
||||
@@ -10,7 +10,7 @@ class GatingConfig(AppConfig):
|
||||
"""
|
||||
Django AppConfig class for the gating app
|
||||
"""
|
||||
name = 'gating'
|
||||
name = 'lms.djangoapps.gating'
|
||||
|
||||
def ready(self):
|
||||
# Import signals to wire up the signal handlers contained within
|
||||
|
||||
@@ -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):
|
||||
|
||||
@@ -10,7 +10,7 @@ class SurveyConfig(AppConfig):
|
||||
"""
|
||||
Application Configuration for survey.
|
||||
"""
|
||||
name = 'survey'
|
||||
name = 'lms.djangoapps.survey'
|
||||
verbose_name = 'Student Surveys'
|
||||
|
||||
def ready(self):
|
||||
|
||||
Reference in New Issue
Block a user