Comment 6 for bug 513750

Revision history for this message
Nhomar - Vauxoo (nhomar) wrote :

I proof n a python shell the complet string shown in traceback and it looks like the encoding of the email is wrong.... the accents are shown like a square:
 The text of a key word is:

Nhomar Hern\xe1ndez

In a python console i tried:

>>A = "Nhomar Hern\xe1ndez"
>>print A
Nhomar Hern�ndez

I tried this:

>>A = u"Nhomar Hern\xe1ndez"
>>print A
Nhomar Hernández

I hope it helps!!!!

regards