From 0cff6fa30dd3ece7af80a3b73e4f200274f84532 Mon Sep 17 00:00:00 2001 From: kimth Date: Mon, 27 Aug 2012 18:51:38 -0400 Subject: [PATCH] Remove debugging comment --- common/lib/capa/capa/capa_problem.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/common/lib/capa/capa/capa_problem.py b/common/lib/capa/capa/capa_problem.py index 8edc65b9f9..d7bae1a36c 100644 --- a/common/lib/capa/capa/capa_problem.py +++ b/common/lib/capa/capa/capa_problem.py @@ -98,10 +98,7 @@ class LoncapaProblem(object): if 'student_answers' in state: self.student_answers = state['student_answers'] if 'correct_map' in state: - print 'THK: LoncapaProblem.__init__' - print json.dumps(state['correct_map'], indent=4) self.correct_map.set_dict(state['correct_map']) - print json.dumps(self.correct_map.get_dict(), indent=4) if 'done' in state: self.done = state['done']