I\'m using Python 2.6 and Jinja2 to create HTML reports. I provide the template with many results and the template loops through them and creates HTML tables
When callin
Try to add this:
import sys reload(sys) sys.setdefaultencoding('utf-8')
It fixed my problem, good luck.