From e85af5d87b5fa9ea00a149836b0dd7c5c234deda Mon Sep 17 00:00:00 2001 From: John Eskew Date: Wed, 1 Nov 2017 16:55:02 -0400 Subject: [PATCH] Point to the proper AppConfig in INSTALLED_APPS for course_modes. --- cms/envs/common.py | 2 +- lms/envs/common.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cms/envs/common.py b/cms/envs/common.py index fe5b913f61..fd5c124322 100644 --- a/cms/envs/common.py +++ b/cms/envs/common.py @@ -988,7 +988,7 @@ INSTALLED_APPS = [ 'django.contrib.admin', # for managing course modes - 'course_modes', + 'course_modes.apps.CourseModesConfig', # Verified Track Content Cohorting (Beta feature that will hopefully be removed) 'openedx.core.djangoapps.verified_track_content', diff --git a/lms/envs/common.py b/lms/envs/common.py index ab51b1b5ea..a49027076a 100644 --- a/lms/envs/common.py +++ b/lms/envs/common.py @@ -2159,7 +2159,7 @@ INSTALLED_APPS = [ 'notifier_api', # Different Course Modes - 'course_modes', + 'course_modes.apps.CourseModesConfig', # Enrollment API 'enrollment',