Fix unicode/ascii issue.

This commit is contained in:
ospalh 2012-07-16 10:32:45 +02:00
parent fa818afedd
commit 95a7765e01

View file

@ -375,8 +375,8 @@ Please run Tools>Maintenance>Empty Cards""")
res = self.correct(cor, given) res = self.correct(cor, given)
if cor != given: if cor != given:
# Wrap the extra text in an id-ed span. # Wrap the extra text in an id-ed span.
res += '<span id=rightanswer><br> {0} <br> {1} </span>'.format( res += u"<span id=rightanswer><br> {0} <br> {1} </span>".format(
_("Correct answer was:"), cor) _(u"Correct answer was:"), cor)
# and update the type answer area # and update the type answer area
return re.sub(self.typeAnsPat, """ return re.sub(self.typeAnsPat, """
<span style="font-family: '%s'; font-size: %spx">%s</span>""" % <span style="font-family: '%s'; font-size: %spx">%s</span>""" %