"Bruno Silva" <[EMAIL PROTECTED]> writes: > UnicodeEncodeError: 'ascii' codec can't encode character u'\xe3' in position > 80: ordinal not in range(128)
Did you follow the docs on the Wiki with regards to using I18N? I recommend keeping *everything* in Unicode, i.e., all of your strings should be u'strings', your database should be in UTF-8, your code should be in UTF-8, etc. I use it here with PostgreSQL and everything in utf-8 and I have no problems at all. -- Jorge Godoy <[EMAIL PROTECTED]> --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TurboGears" 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/turbogears -~----------~----~----~----~------~----~------~--~---

