Commit bca308e7 by Vik Paruchuri

No more log.info

parent a939c152
......@@ -452,7 +452,6 @@ class CombinedOpenEndedV1Module():
def extract_human_name_from_task(self, task_xml):
tree = etree.fromstring(task_xml)
log.info(etree.tostring(tree))
payload = tree.xpath("/openended/openendedparam/grader_payload")
if len(payload)==0:
task_name = "selfassessment"
......@@ -527,9 +526,6 @@ class CombinedOpenEndedV1Module():
context = {
'results': contexts,
}
log.info(contexts)
html = self.system.render_template('{0}/combined_open_ended_results.html'.format(self.TEMPLATE_DIR), context)
return {'html': html, 'success': True}
......
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