From 562dee067c307edcabda4d5bbb79aefe5687d79c Mon Sep 17 00:00:00 2001 From: Vik Paruchuri Date: Wed, 31 Oct 2012 17:10:51 -0400 Subject: [PATCH] rolling back self assessment module --- common/lib/xmodule/xmodule/self_assessment_module.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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:], ]