Commit 38f5761a by Calen Pennington

Merge pull request #864 from MITx/bug/lyla/numericalresponse

quick bug fix
parents f0108757 1bd2cb4f
...@@ -710,7 +710,7 @@ class NumericalResponse(LoncapaResponse): ...@@ -710,7 +710,7 @@ class NumericalResponse(LoncapaResponse):
id=xml.get('id'))[0] id=xml.get('id'))[0]
self.tolerance = contextualize_text(self.tolerance_xml, context) self.tolerance = contextualize_text(self.tolerance_xml, context)
except Exception: except Exception:
self.tolerance = 0 self.tolerance = '0'
try: try:
self.answer_id = xml.xpath('//*[@id=$id]//textline/@id', self.answer_id = xml.xpath('//*[@id=$id]//textline/@id',
id=xml.get('id'))[0] id=xml.get('id'))[0]
......
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