From a7b389427417e7b65a05fade9733146fdb320c1c Mon Sep 17 00:00:00 2001 From: Jeremy Bowman Date: Wed, 1 Nov 2017 15:56:53 -0400 Subject: [PATCH] PLAT-1779 Fix CMS INSTALLED_APPS/model imports mismatch --- cms/envs/common.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cms/envs/common.py b/cms/envs/common.py index fd5c124322..dfcfef031f 100644 --- a/cms/envs/common.py +++ b/cms/envs/common.py @@ -1050,7 +1050,10 @@ INSTALLED_APPS = [ # These are apps that aren't strictly needed by Studio, but are imported by # other apps that are. Django 1.8 wants to have imported models supported # by installed apps. + 'courseware', + 'survey', 'lms.djangoapps.verify_student.apps.VerifyStudentConfig', + 'lms.djangoapps.completion.apps.CompletionAppConfig', # Microsite configuration application 'microsite_configuration',