From 9ae00c673283b3757c7da2b3429ccc44c257d2df Mon Sep 17 00:00:00 2001 From: ichuang Date: Mon, 11 Jun 2012 22:28:09 -0400 Subject: [PATCH] removed unused answer_map parameter from capa_problem.lcp.preprocess_problem --- common/lib/capa/capa_problem.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/lib/capa/capa_problem.py b/common/lib/capa/capa_problem.py index 516c72494b..77eaf95615 100644 --- a/common/lib/capa/capa_problem.py +++ b/common/lib/capa/capa_problem.py @@ -119,7 +119,7 @@ class LoncapaProblem(object): # pre-parse the XML tree: modifies it to add ID's and perform some in-place transformations # this also creates the dict (self.responders) of Response instances for each question in the problem. # the dict has keys = xml subtree of Response, values = Response instance - self.preprocess_problem(self.tree, answer_map=self.student_answers) + self.preprocess_problem(self.tree) def do_reset(self): ''' @@ -340,7 +340,7 @@ class LoncapaProblem(object): return tree - def preprocess_problem(self, tree, answer_map=dict()): # private + def preprocess_problem(self, tree): # private ''' Assign IDs to all the responses Assign sub-IDs to all entries (textline, schematic, etc.)