adieu / vobject

Git clone of the official vobject project
http://vobject.skyhouseconsulting.com/
16 stars 15 forks source link

Cannot handle (understand) charset of address. #6

Open quite opened 9 years ago

quite commented 9 years ago

I have UTF-8 in my vobject source files. Non-ascii characters in FN and N comes through okay when vobject parses and I print in my python program.

For ADR, that doesn't work out. I only get question marks instead of č, ö, ç and so on. Have tried to massage the address value (class Address) in different ways but to no avail.

In Address.__str__ we have: return ascii(out) , could that be related? Removing ascii() causes further problems, and I can't say I'm well versed in the python character encoding situation. python 2.7.9 here.

Thanks for continuing development of the python vobject.