For the second time in a few weeks I've been bitten by a UnicodeDecodeError
in a collection (or smart folder or topic):
Module Products.PluginIndexes.common.UnIndex, line 393, in _apply_index UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 9: ordinal not in range(128)
The error occurred to me in the following case:
"zest software"
and u"Universit\xe9 de Paris"
.In my case, I parsed an xml file and the parser returned everything perfectly as unicode. Afterward, I did some string processing on it, like organizations = orgfield.split(",")
to split some string on commas. The result is, surprisingly, a mix of normal strings (the entries containing only ascii characters) and unicode (the university with the accented character).
The solution was to do an organization = organization.encode("utf-8")
before giving it to plone.
My name is Reinout van Rees and I program in Python, I live in the Netherlands, I cycle recumbent bikes and I have a model railway.
Most of my website content is in my weblog. You can keep up to date by subscribing to the automatic feeds (for instance with Google reader):