> File "/opt/local/lib/python2.5/site-packages/web/template.py", line > 712, in _join_output > d[k] = "".join(d[k]) > UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position > 64: ordinal not in range(128)
This looks like a bug in template.py: this should be: d[k] = u"".join(d[k]) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "web.py" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/webpy?hl=en -~----------~----~----~----~------~----~------~--~---
