cmislib chokes on non-ascii properties
--------------------------------------
Key: CMIS-158
URL: https://issues.apache.org/jira/browse/CMIS-158
Project: Chemistry
Issue Type: Bug
Components: cmislib
Reporter: Stefane Fermigier
I believe this patch is needed on model.py:
@@ -3765,7 +3766,7 @@
if nodeName == 'propertyId':
return CmisId(value)
elif nodeName == 'propertyString':
- return str(value)
+ return value
elif nodeName == 'propertyBoolean':
bDict = {'false': False, 'true': True}
return bDict[value.lower()]
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.