Skip to content

Commit

Permalink
Merge pull request #16221 from edx/dsjen/fix-config-text
Browse files Browse the repository at this point in the history
Fixed typos in comment and config  message.
  • Loading branch information
dsjen authored Oct 13, 2017
2 parents 2605bf9 + badcd43 commit 3c43230
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cms/djangoapps/contentstore/config/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@


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
Expand Down
2 changes: 1 addition & 1 deletion cms/djangoapps/contentstore/config/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,4 @@ def __unicode__(self):
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)

0 comments on commit 3c43230

Please sign in to comment.