Move PluginManager out of api folder

This commit is contained in:
Nimisha Asthagiri
2018-01-04 12:28:50 -05:00
parent 7a69d2f771
commit a37d09aefb
6 changed files with 5 additions and 5 deletions

View File

@@ -8,7 +8,7 @@ from django.core.files.storage import get_storage_class
from six import text_type
from xblock.fields import List
from openedx.core.lib.api.plugins import PluginError
from openedx.core.lib.plugins import PluginError
log = logging.getLogger("edx.courseware")

View File

@@ -5,7 +5,7 @@ PluginManager.
from base64 import b64encode
from hashlib import sha1
from openedx.core.lib.api.plugins import PluginManager
from openedx.core.lib.plugins import PluginManager
from openedx.core.lib.cache_utils import memoized

View File

@@ -1,7 +1,7 @@
"""
Tabs for courseware.
"""
from openedx.core.lib.api.plugins import PluginManager
from openedx.core.lib.plugins import PluginManager
# Stevedore extension point namespaces
COURSE_TAB_NAMESPACE = 'openedx.course_tab'

View File

@@ -5,7 +5,7 @@ Tests for the plugin API
from django.test import TestCase
from nose.plugins.attrib import attr
from openedx.core.lib.api.plugins import PluginError
from openedx.core.lib.plugins import PluginError
from openedx.core.lib.course_tabs import CourseTabPluginManager

View File

@@ -1,7 +1,7 @@
"""
Support for course tool plugins.
"""
from openedx.core.lib.api.plugins import PluginManager
from openedx.core.lib.plugins import PluginManager
# Stevedore extension point namespace
COURSE_TOOLS_NAMESPACE = 'openedx.course_tool'