Run sys_path_hacks/un_sys_path.sh lms
This commit is contained in:
committed by
Calen Pennington
parent
3ebba52cf7
commit
211bd3beb5
4
sys_path_hacks/lms/edxnotes/__init__.py
Normal file
4
sys_path_hacks/lms/edxnotes/__init__.py
Normal file
@@ -0,0 +1,4 @@
|
||||
import warnings
|
||||
warnings.warn("Importing edxnotes instead of lms.djangoapps.edxnotes is deprecated", stacklevel=2)
|
||||
|
||||
from lms.djangoapps.edxnotes import *
|
||||
4
sys_path_hacks/lms/edxnotes/api_urls.py
Normal file
4
sys_path_hacks/lms/edxnotes/api_urls.py
Normal file
@@ -0,0 +1,4 @@
|
||||
import warnings
|
||||
warnings.warn("Importing edxnotes.api_urls instead of lms.djangoapps.edxnotes.api_urls is deprecated", stacklevel=2)
|
||||
|
||||
from lms.djangoapps.edxnotes.api_urls import *
|
||||
4
sys_path_hacks/lms/edxnotes/decorators.py
Normal file
4
sys_path_hacks/lms/edxnotes/decorators.py
Normal file
@@ -0,0 +1,4 @@
|
||||
import warnings
|
||||
warnings.warn("Importing edxnotes.decorators instead of lms.djangoapps.edxnotes.decorators is deprecated", stacklevel=2)
|
||||
|
||||
from lms.djangoapps.edxnotes.decorators import *
|
||||
4
sys_path_hacks/lms/edxnotes/exceptions.py
Normal file
4
sys_path_hacks/lms/edxnotes/exceptions.py
Normal file
@@ -0,0 +1,4 @@
|
||||
import warnings
|
||||
warnings.warn("Importing edxnotes.exceptions instead of lms.djangoapps.edxnotes.exceptions is deprecated", stacklevel=2)
|
||||
|
||||
from lms.djangoapps.edxnotes.exceptions import *
|
||||
4
sys_path_hacks/lms/edxnotes/helpers.py
Normal file
4
sys_path_hacks/lms/edxnotes/helpers.py
Normal file
@@ -0,0 +1,4 @@
|
||||
import warnings
|
||||
warnings.warn("Importing edxnotes.helpers instead of lms.djangoapps.edxnotes.helpers is deprecated", stacklevel=2)
|
||||
|
||||
from lms.djangoapps.edxnotes.helpers import *
|
||||
4
sys_path_hacks/lms/edxnotes/plugins.py
Normal file
4
sys_path_hacks/lms/edxnotes/plugins.py
Normal file
@@ -0,0 +1,4 @@
|
||||
import warnings
|
||||
warnings.warn("Importing edxnotes.plugins instead of lms.djangoapps.edxnotes.plugins is deprecated", stacklevel=2)
|
||||
|
||||
from lms.djangoapps.edxnotes.plugins import *
|
||||
4
sys_path_hacks/lms/edxnotes/tests.py
Normal file
4
sys_path_hacks/lms/edxnotes/tests.py
Normal file
@@ -0,0 +1,4 @@
|
||||
import warnings
|
||||
warnings.warn("Importing edxnotes.tests instead of lms.djangoapps.edxnotes.tests is deprecated", stacklevel=2)
|
||||
|
||||
from lms.djangoapps.edxnotes.tests import *
|
||||
4
sys_path_hacks/lms/edxnotes/urls.py
Normal file
4
sys_path_hacks/lms/edxnotes/urls.py
Normal file
@@ -0,0 +1,4 @@
|
||||
import warnings
|
||||
warnings.warn("Importing edxnotes.urls instead of lms.djangoapps.edxnotes.urls is deprecated", stacklevel=2)
|
||||
|
||||
from lms.djangoapps.edxnotes.urls import *
|
||||
4
sys_path_hacks/lms/edxnotes/views.py
Normal file
4
sys_path_hacks/lms/edxnotes/views.py
Normal file
@@ -0,0 +1,4 @@
|
||||
import warnings
|
||||
warnings.warn("Importing edxnotes.views instead of lms.djangoapps.edxnotes.views is deprecated", stacklevel=2)
|
||||
|
||||
from lms.djangoapps.edxnotes.views import *
|
||||
Reference in New Issue
Block a user