Commit 3418feba by Felix Sun

Added error logging for unparsable answers.

parent b68c1178
......@@ -144,6 +144,7 @@ class CrowdsourceHinterModule(CrowdsourceHinterFields, XModule):
answer = self.capa_answer_to_str(get)
except ValueError:
# Sometimes, we get an answer that's just not parsable. Do nothing.
log.exception('Answer not parsable: ' + str(get))
return
# Look for a hint to give.
# Make a local copy of self.hints - this means we only need to do one json unpacking.
......
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