Closed GoogleCodeExporter closed 9 years ago
Your WSGI application is wrong. Your WSGI application must return a byte string
and not a Unicode string. You need to convert your Unicode string to using
appropriate encoding, usually UTF-8, when returning them.
output.encode('utf-8')
it is not the servers responsibility to do that.
Original comment by Graham.Dumpleton@gmail.com
on 19 Sep 2011 at 5:53
Thanks!! I'm python programing beginner. So I didn't now it. Your answer help
me and I can display Japanese!! Thank you very much!!
Original comment by ink...@gmail.com
on 19 Sep 2011 at 9:50
Original issue reported on code.google.com by
ink...@gmail.com
on 19 Sep 2011 at 5:18