Thank you for your work.
It seems there is the use of the trim() function, not available in Python language in the source code, instead of the strip() function.
e.g. in the EntityAPI in the export_opex_start() function, which the execution is giving the following error:
File "venv\lib\site-packages\pyPreservica\entityAPI.py", line 150, in export_opex_start
value = kwargs.get("IncludeContent").trim()
AttributeError: 'str' object has no attribute 'trim'. Did you mean: 'strip'?
Hi James,
Thank you for your work. It seems there is the use of the trim() function, not available in Python language in the source code, instead of the strip() function. e.g. in the EntityAPI in the export_opex_start() function, which the execution is giving the following error:
File "venv\lib\site-packages\pyPreservica\entityAPI.py", line 150, in export_opex_start value = kwargs.get("IncludeContent").trim() AttributeError: 'str' object has no attribute 'trim'. Did you mean: 'strip'?
thanks, R.