Commit cbb377d3 by kimth

Answer dict values remain unicode, rather than str

parent afcd6fb1
...@@ -39,5 +39,5 @@ def convert_files_to_filenames(answers): ...@@ -39,5 +39,5 @@ def convert_files_to_filenames(answers):
''' '''
new_answers = dict() new_answers = dict()
for answer_id in answers.keys(): for answer_id in answers.keys():
new_answers[answer_id] = str(answers[answer_id]) new_answers[answer_id] = unicode(answers[answer_id])
return new_answers return new_answers
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