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/debug/__init__.py
Normal file
4
sys_path_hacks/lms/debug/__init__.py
Normal file
@@ -0,0 +1,4 @@
|
||||
import warnings
|
||||
warnings.warn("Importing debug instead of lms.djangoapps.debug is deprecated", stacklevel=2)
|
||||
|
||||
from lms.djangoapps.debug import *
|
||||
4
sys_path_hacks/lms/debug/management/__init__.py
Normal file
4
sys_path_hacks/lms/debug/management/__init__.py
Normal file
@@ -0,0 +1,4 @@
|
||||
import warnings
|
||||
warnings.warn("Importing debug.management instead of lms.djangoapps.debug.management is deprecated", stacklevel=2)
|
||||
|
||||
from lms.djangoapps.debug.management import *
|
||||
4
sys_path_hacks/lms/debug/management/commands/__init__.py
Normal file
4
sys_path_hacks/lms/debug/management/commands/__init__.py
Normal file
@@ -0,0 +1,4 @@
|
||||
import warnings
|
||||
warnings.warn("Importing debug.management.commands instead of lms.djangoapps.debug.management.commands is deprecated", stacklevel=2)
|
||||
|
||||
from lms.djangoapps.debug.management.commands import *
|
||||
@@ -0,0 +1,4 @@
|
||||
import warnings
|
||||
warnings.warn("Importing debug.management.commands.dump_xml_courses instead of lms.djangoapps.debug.management.commands.dump_xml_courses is deprecated", stacklevel=2)
|
||||
|
||||
from lms.djangoapps.debug.management.commands.dump_xml_courses import *
|
||||
4
sys_path_hacks/lms/debug/views.py
Normal file
4
sys_path_hacks/lms/debug/views.py
Normal file
@@ -0,0 +1,4 @@
|
||||
import warnings
|
||||
warnings.warn("Importing debug.views instead of lms.djangoapps.debug.views is deprecated", stacklevel=2)
|
||||
|
||||
from lms.djangoapps.debug.views import *
|
||||
Reference in New Issue
Block a user