Run sys_path_hacks/un_sys_path.sh lms

This commit is contained in:
Calen Pennington
2020-09-22 11:37:57 -04:00
committed by Calen Pennington
parent 3ebba52cf7
commit 211bd3beb5
970 changed files with 3880 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
import warnings
warnings.warn("Importing instructor_task instead of lms.djangoapps.instructor_task is deprecated", stacklevel=2)
from lms.djangoapps.instructor_task import *

View File

@@ -0,0 +1,4 @@
import warnings
warnings.warn("Importing instructor_task.admin instead of lms.djangoapps.instructor_task.admin is deprecated", stacklevel=2)
from lms.djangoapps.instructor_task.admin import *

View File

@@ -0,0 +1,4 @@
import warnings
warnings.warn("Importing instructor_task.api instead of lms.djangoapps.instructor_task.api is deprecated", stacklevel=2)
from lms.djangoapps.instructor_task.api import *

View File

@@ -0,0 +1,4 @@
import warnings
warnings.warn("Importing instructor_task.api_helper instead of lms.djangoapps.instructor_task.api_helper is deprecated", stacklevel=2)
from lms.djangoapps.instructor_task.api_helper import *

View File

@@ -0,0 +1,4 @@
import warnings
warnings.warn("Importing instructor_task.config instead of lms.djangoapps.instructor_task.config is deprecated", stacklevel=2)
from lms.djangoapps.instructor_task.config import *

View File

@@ -0,0 +1,4 @@
import warnings
warnings.warn("Importing instructor_task.config.models instead of lms.djangoapps.instructor_task.config.models is deprecated", stacklevel=2)
from lms.djangoapps.instructor_task.config.models import *

View File

@@ -0,0 +1,4 @@
import warnings
warnings.warn("Importing instructor_task.config.waffle instead of lms.djangoapps.instructor_task.config.waffle is deprecated", stacklevel=2)
from lms.djangoapps.instructor_task.config.waffle import *

View File

@@ -0,0 +1,4 @@
import warnings
warnings.warn("Importing instructor_task.exceptions instead of lms.djangoapps.instructor_task.exceptions is deprecated", stacklevel=2)
from lms.djangoapps.instructor_task.exceptions import *

View File

@@ -0,0 +1,4 @@
import warnings
warnings.warn("Importing instructor_task.management instead of lms.djangoapps.instructor_task.management is deprecated", stacklevel=2)
from lms.djangoapps.instructor_task.management import *

View File

@@ -0,0 +1,4 @@
import warnings
warnings.warn("Importing instructor_task.management.commands instead of lms.djangoapps.instructor_task.management.commands is deprecated", stacklevel=2)
from lms.djangoapps.instructor_task.management.commands import *

View File

@@ -0,0 +1,4 @@
import warnings
warnings.warn("Importing instructor_task.management.commands.fail_old_tasks instead of lms.djangoapps.instructor_task.management.commands.fail_old_tasks is deprecated", stacklevel=2)
from lms.djangoapps.instructor_task.management.commands.fail_old_tasks import *

View File

@@ -0,0 +1,4 @@
import warnings
warnings.warn("Importing instructor_task.management.commands.tests instead of lms.djangoapps.instructor_task.management.commands.tests is deprecated", stacklevel=2)
from lms.djangoapps.instructor_task.management.commands.tests import *

View File

@@ -0,0 +1,4 @@
import warnings
warnings.warn("Importing instructor_task.management.commands.tests.test_fail_old_tasks instead of lms.djangoapps.instructor_task.management.commands.tests.test_fail_old_tasks is deprecated", stacklevel=2)
from lms.djangoapps.instructor_task.management.commands.tests.test_fail_old_tasks import *

View File

@@ -0,0 +1,4 @@
import warnings
warnings.warn("Importing instructor_task.models instead of lms.djangoapps.instructor_task.models is deprecated", stacklevel=2)
from lms.djangoapps.instructor_task.models import *

View File

@@ -0,0 +1,4 @@
import warnings
warnings.warn("Importing instructor_task.subtasks instead of lms.djangoapps.instructor_task.subtasks is deprecated", stacklevel=2)
from lms.djangoapps.instructor_task.subtasks import *

View File

@@ -0,0 +1,4 @@
import warnings
warnings.warn("Importing instructor_task.tasks instead of lms.djangoapps.instructor_task.tasks is deprecated", stacklevel=2)
from lms.djangoapps.instructor_task.tasks import *

View File

@@ -0,0 +1,4 @@
import warnings
warnings.warn("Importing instructor_task.tasks_base instead of lms.djangoapps.instructor_task.tasks_base is deprecated", stacklevel=2)
from lms.djangoapps.instructor_task.tasks_base import *

View File

@@ -0,0 +1,4 @@
import warnings
warnings.warn("Importing instructor_task.tasks_helper instead of lms.djangoapps.instructor_task.tasks_helper is deprecated", stacklevel=2)
from lms.djangoapps.instructor_task.tasks_helper import *

View File

@@ -0,0 +1,4 @@
import warnings
warnings.warn("Importing instructor_task.tasks_helper.certs instead of lms.djangoapps.instructor_task.tasks_helper.certs is deprecated", stacklevel=2)
from lms.djangoapps.instructor_task.tasks_helper.certs import *

View File

@@ -0,0 +1,4 @@
import warnings
warnings.warn("Importing instructor_task.tasks_helper.enrollments instead of lms.djangoapps.instructor_task.tasks_helper.enrollments is deprecated", stacklevel=2)
from lms.djangoapps.instructor_task.tasks_helper.enrollments import *

View File

@@ -0,0 +1,4 @@
import warnings
warnings.warn("Importing instructor_task.tasks_helper.grades instead of lms.djangoapps.instructor_task.tasks_helper.grades is deprecated", stacklevel=2)
from lms.djangoapps.instructor_task.tasks_helper.grades import *

View File

@@ -0,0 +1,4 @@
import warnings
warnings.warn("Importing instructor_task.tasks_helper.misc instead of lms.djangoapps.instructor_task.tasks_helper.misc is deprecated", stacklevel=2)
from lms.djangoapps.instructor_task.tasks_helper.misc import *

View File

@@ -0,0 +1,4 @@
import warnings
warnings.warn("Importing instructor_task.tasks_helper.module_state instead of lms.djangoapps.instructor_task.tasks_helper.module_state is deprecated", stacklevel=2)
from lms.djangoapps.instructor_task.tasks_helper.module_state import *

View File

@@ -0,0 +1,4 @@
import warnings
warnings.warn("Importing instructor_task.tasks_helper.runner instead of lms.djangoapps.instructor_task.tasks_helper.runner is deprecated", stacklevel=2)
from lms.djangoapps.instructor_task.tasks_helper.runner import *

View File

@@ -0,0 +1,4 @@
import warnings
warnings.warn("Importing instructor_task.tasks_helper.utils instead of lms.djangoapps.instructor_task.tasks_helper.utils is deprecated", stacklevel=2)
from lms.djangoapps.instructor_task.tasks_helper.utils import *

View File

@@ -0,0 +1,4 @@
import warnings
warnings.warn("Importing instructor_task.tests instead of lms.djangoapps.instructor_task.tests is deprecated", stacklevel=2)
from lms.djangoapps.instructor_task.tests import *

View File

@@ -0,0 +1,4 @@
import warnings
warnings.warn("Importing instructor_task.tests.factories instead of lms.djangoapps.instructor_task.tests.factories is deprecated", stacklevel=2)
from lms.djangoapps.instructor_task.tests.factories import *

View File

@@ -0,0 +1,4 @@
import warnings
warnings.warn("Importing instructor_task.tests.test_api instead of lms.djangoapps.instructor_task.tests.test_api is deprecated", stacklevel=2)
from lms.djangoapps.instructor_task.tests.test_api import *

View File

@@ -0,0 +1,4 @@
import warnings
warnings.warn("Importing instructor_task.tests.test_base instead of lms.djangoapps.instructor_task.tests.test_base is deprecated", stacklevel=2)
from lms.djangoapps.instructor_task.tests.test_base import *

View File

@@ -0,0 +1,4 @@
import warnings
warnings.warn("Importing instructor_task.tests.test_integration instead of lms.djangoapps.instructor_task.tests.test_integration is deprecated", stacklevel=2)
from lms.djangoapps.instructor_task.tests.test_integration import *

View File

@@ -0,0 +1,4 @@
import warnings
warnings.warn("Importing instructor_task.tests.test_models instead of lms.djangoapps.instructor_task.tests.test_models is deprecated", stacklevel=2)
from lms.djangoapps.instructor_task.tests.test_models import *

View File

@@ -0,0 +1,4 @@
import warnings
warnings.warn("Importing instructor_task.tests.test_subtasks instead of lms.djangoapps.instructor_task.tests.test_subtasks is deprecated", stacklevel=2)
from lms.djangoapps.instructor_task.tests.test_subtasks import *

View File

@@ -0,0 +1,4 @@
import warnings
warnings.warn("Importing instructor_task.tests.test_tasks instead of lms.djangoapps.instructor_task.tests.test_tasks is deprecated", stacklevel=2)
from lms.djangoapps.instructor_task.tests.test_tasks import *

View File

@@ -0,0 +1,4 @@
import warnings
warnings.warn("Importing instructor_task.tests.test_tasks_helper instead of lms.djangoapps.instructor_task.tests.test_tasks_helper is deprecated", stacklevel=2)
from lms.djangoapps.instructor_task.tests.test_tasks_helper import *

View File

@@ -0,0 +1,4 @@
import warnings
warnings.warn("Importing instructor_task.tests.test_views instead of lms.djangoapps.instructor_task.tests.test_views is deprecated", stacklevel=2)
from lms.djangoapps.instructor_task.tests.test_views import *

View File

@@ -0,0 +1,4 @@
import warnings
warnings.warn("Importing instructor_task.views instead of lms.djangoapps.instructor_task.views is deprecated", stacklevel=2)
from lms.djangoapps.instructor_task.views import *