diff --git a/tutor/plugins/openedx.py b/tutor/plugins/openedx.py index 91bbc877dc..c8a659e8e2 100644 --- a/tutor/plugins/openedx.py +++ b/tutor/plugins/openedx.py @@ -16,7 +16,7 @@ def _migrate_obsolete_nightly_root(root: str) -> None: Since Tutor switched from the "nightly" branch to the "main" branch, we automatically migrate data from the project root and the plugins root. - REMOVE-ME-AFTER-v20: migrate this code to the sumac upgrade commands. + REMOVE-AFTER-V20: migrate this code to the sumac upgrade commands. """ # Run it for old nightly only diff --git a/tutor/templates/apps/openedx/settings/partials/common_all.py b/tutor/templates/apps/openedx/settings/partials/common_all.py index 6c8fa11205..495861c1ab 100644 --- a/tutor/templates/apps/openedx/settings/partials/common_all.py +++ b/tutor/templates/apps/openedx/settings/partials/common_all.py @@ -152,7 +152,7 @@ # These warnings are visible in simple commands and init tasks import warnings -# REMOVE-ME-AFTER-v20: check if we can remove these lines after upgrade. +# REMOVE-AFTER-V20: check if we can remove these lines after upgrade. from django.utils.deprecation import RemovedInDjango50Warning, RemovedInDjango51Warning # RemovedInDjango5xWarning: 'xxx' is deprecated. Use 'yyy' in 'zzz' instead. warnings.filterwarnings("ignore", category=RemovedInDjango50Warning)