diff --git a/common/lib/xmodule/xmodule/self_assessment_module.py b/common/lib/xmodule/xmodule/self_assessment_module.py index b6e8a667b4..0c31a48b1e 100644 --- a/common/lib/xmodule/xmodule/self_assessment_module.py +++ b/common/lib/xmodule/xmodule/self_assessment_module.py @@ -452,7 +452,7 @@ class SelfAssessmentDescriptor(RawDescriptor): stores_state = True has_score = True - template_dir_name = 'selfassessment' + template_dir_name = 'problem' # Capa modules have some additional metadata: # TODO (vshnayder): do problems have any other metadata? Do they @@ -465,7 +465,7 @@ class SelfAssessmentDescriptor(RawDescriptor): @classmethod def backcompat_paths(cls, path): return [ - 'problems/' + path[8:], + 'problem/' + path[8:], path[8:], ]