You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
into workflow.py , the workflow_xml parameter of import_workflow method need to be a str since SP30 (rev 9fe1e32 ) instead of basestring in the past. It is an issue if you use the result of xml.etree.ElementTree.tostring as workflow definition because you must use UTF-8 encoding for kept local language chars.
It is possible to use a temporary file with this method because this file is read with UTF-8 encoding but it is more practical if it is possible to directly use XML data as argument
Is it possible to accept again some UTF-8 for workflow_xml ?
Regards
The text was updated successfully, but these errors were encountered:
Hello,
into workflow.py , the workflow_xml parameter of import_workflow method need to be a str since SP30 (rev 9fe1e32 ) instead of basestring in the past. It is an issue if you use the result of xml.etree.ElementTree.tostring as workflow definition because you must use UTF-8 encoding for kept local language chars.
It is possible to use a temporary file with this method because this file is read with UTF-8 encoding but it is more practical if it is possible to directly use XML data as argument
Is it possible to accept again some UTF-8 for workflow_xml ?
Regards
The text was updated successfully, but these errors were encountered: