diff --git a/cms/djangoapps/contentstore/config/forms.py b/cms/djangoapps/contentstore/config/forms.py index a9e77a1cf7..a0c39e2fbc 100644 --- a/cms/djangoapps/contentstore/config/forms.py +++ b/cms/djangoapps/contentstore/config/forms.py @@ -15,7 +15,7 @@ log = logging.getLogger(__name__) class CourseNewAssetsPageAdminForm(forms.ModelForm): - """Input form for new asset page enablment, allowing us to verify user input.""" + """Input form for new asset page enablement, allowing us to verify user input.""" class Meta(object): model = CourseNewAssetsPageFlag diff --git a/cms/djangoapps/contentstore/config/models.py b/cms/djangoapps/contentstore/config/models.py index a75bf17bd2..7ca42ea726 100644 --- a/cms/djangoapps/contentstore/config/models.py +++ b/cms/djangoapps/contentstore/config/models.py @@ -74,4 +74,4 @@ class CourseNewAssetsPageFlag(ConfigurationModel): if self.enabled: not_en = "" # pylint: disable=no-member - return u"Course '{}': Persistent Grades {}Enabled".format(self.course_id.to_deprecated_string(), not_en) + return u"Course '{}': New assets page {}Enabled".format(self.course_id.to_deprecated_string(), not_en)