From 93c6a89bd6f0d8ff9a32e37d4f6e9c4ed0aa3f8f Mon Sep 17 00:00:00 2001 From: Nimisha Asthagiri Date: Thu, 11 Jan 2018 10:30:10 -0500 Subject: [PATCH] Update schedules app to be a Django App Plugin --- openedx/core/djangoapps/schedules/apps.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/openedx/core/djangoapps/schedules/apps.py b/openedx/core/djangoapps/schedules/apps.py index a05be5447f..de788a11da 100644 --- a/openedx/core/djangoapps/schedules/apps.py +++ b/openedx/core/djangoapps/schedules/apps.py @@ -6,6 +6,8 @@ class SchedulesConfig(AppConfig): name = 'openedx.core.djangoapps.schedules' verbose_name = _('Schedules') + plugin_app = {} + def ready(self): # noinspection PyUnresolvedReferences from . import signals, tasks # pylint: disable=unused-variable