Commit 0cff6fa3 by kimth

Remove debugging comment

parent c462b1a9
...@@ -98,10 +98,7 @@ class LoncapaProblem(object): ...@@ -98,10 +98,7 @@ class LoncapaProblem(object):
if 'student_answers' in state: if 'student_answers' in state:
self.student_answers = state['student_answers'] self.student_answers = state['student_answers']
if 'correct_map' in state: 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']) self.correct_map.set_dict(state['correct_map'])
print json.dumps(self.correct_map.get_dict(), indent=4)
if 'done' in state: if 'done' in state:
self.done = state['done'] self.done = state['done']
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment