On Nov 1, 11:45 am, cjrh <caleb.hatti...@gmail.com> wrote: > import gluon.contrib.simplejson as simplejson > return unicode(simplejson.dumps(make_result_list(msg_out, rows, > success)), 'unicode-escape')
This is bad advice, because 'unicode-escape' will clobber all things that have been escaped, including quotes. You can get it working just using simplejson with better arguments: simplejson.dumps(s, ensure_ascii=False, encoding='utf8') Is there a reason why the json method in serializers.py doesn't do this already? Currently, it just says return simplejson.dumps(s) which will result in a non-unicode string with unicode characters escaped.