From 1237ee6b377d9fecf9f36b790c9f8f1ac9dfe6f6 Mon Sep 17 00:00:00 2001 From: Sarina Canelake Date: Sun, 31 May 2015 16:23:05 -0400 Subject: [PATCH] Add correct_or_past_due option for showanswer help text (ref bbeb79cb) --- common/lib/xmodule/xmodule/modulestore/inheritance.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/common/lib/xmodule/xmodule/modulestore/inheritance.py b/common/lib/xmodule/xmodule/modulestore/inheritance.py index d6293647c7..896db37990 100644 --- a/common/lib/xmodule/xmodule/modulestore/inheritance.py +++ b/common/lib/xmodule/xmodule/modulestore/inheritance.py @@ -88,7 +88,11 @@ class InheritanceMixin(XBlockMixin): ) showanswer = String( display_name=_("Show Answer"), - help=_("Specify when the Show Answer button appears for each problem. Valid values are \"always\", \"answered\", \"attempted\", \"closed\", \"finished\", \"past_due\", and \"never\"."), + help=_( + 'Specify when the Show Answer button appears for each problem. ' + 'Valid values are "always", "answered", "attempted", "closed", ' + '"finished", "past_due", "correct_or_past_due", and "never".' + ), scope=Scope.settings, default="finished", )