From 8d05e79b655da631e286f018cd1051ec5d26446f Mon Sep 17 00:00:00 2001 From: Paul Resnick Date: Mon, 7 Sep 2015 22:58:20 -0400 Subject: [PATCH] fix bug so deprecated mchoicma will still work --- runestone/assess/multiplechoice.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runestone/assess/multiplechoice.py b/runestone/assess/multiplechoice.py index ab1e87af3..5fa2cafb1 100644 --- a/runestone/assess/multiplechoice.py +++ b/runestone/assess/multiplechoice.py @@ -159,7 +159,7 @@ def run(self): class MChoiceMA(MChoice): def run(self): - self.options['multipleAnswers'] = 'multipleAnswers' + self.options['multiple_answers'] = 'multipleAnswers' print("This directive has been depreciated. Please convert to the new directive 'mchoice'") mchoicemaNode = super(MChoiceMA,self).run()[0]