In a MultiScript when I run
$python_script_path = StrReplace($python_script_path, '"', 'x');
it runs fine
but if I run
$python_script_path = StrReplace($python_script_path, '"', '^"');
it reports an error to Log Window
further, If I create a var with '^"' and use it like
$python_script_path = StrReplace($python_script_path, '"', $aux);
it runs fine also
I think there's something wrong there