diff --git a/lms/envs/dev_ike.py b/lms/envs/dev_ike.py index 288a99bf3b..d8b61572a5 100644 --- a/lms/envs/dev_ike.py +++ b/lms/envs/dev_ike.py @@ -21,3 +21,4 @@ MITX_FEATURES['ACCESS_REQUIRE_STAFF_FOR_COURSE'] = True # require that user be INSTALLED_APPS = tuple([ app for app in INSTALLED_APPS if not app.startswith('debug_toolbar') ]) MIDDLEWARE_CLASSES = tuple([ mcl for mcl in MIDDLEWARE_CLASSES if not mcl.startswith('debug_toolbar') ]) +TEMPLATE_LOADERS = tuple([ app for app in TEMPLATE_LOADERS if not app.startswith('askbot') ])