8000
python 2.x compatibility #168
Labels
10000
there is a problem in
CT_CoreProperties._set_element_text (line 299)
which will will fail in a default windows-python2.x installation when supplying unicode strings (e.g.):
This is because there is no default system encoding, so python tries to encode the unicode-string using 7-bit-ASCII, which of course fails.
My solution: Only convert to string, if its necessary. If it's already a string/unicode, don't touch.
The text was updated successfully, but these errors were encountered: