On Jun 29, 7:47 pm, "Aaron Swartz" <[EMAIL PROTECTED]> wrote:
> > 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])
I assume this is close, but the above change doesn't solve the
problem.
File "/opt/local/lib/python2.5/site-packages/web/template.py", line
712, in _join_output
d[k] = u"".join(d[k])
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc2 in position
5: ordinal not in range(128)
Hopefully Anand can figure it out.
Bruce
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---