Commit ea594a29 by Dave St.Germain

Merge pull request #2464 from edx/dcs/default-css-class

The default course CSS class should be empty string rather than None.
parents cb8818a4 0e5f3e4f
......@@ -364,7 +364,7 @@ class CourseFields(object):
# way to add in course-specific styling. There needs to be a discussion
# about the right way to do this, but arjun will address this ASAP. Also
# note that the courseware template needs to change when this is removed.
css_class = String(help="DO NOT USE THIS", scope=Scope.settings)
css_class = String(help="DO NOT USE THIS", scope=Scope.settings, default="")
# TODO: This is a quick kludge to allow CS50 (and other courses) to
# specify their own discussion forums as external links by specifying a
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment