Hi,
I have the following code:
${result} = Run Process acommand
${jsonresult}= evaluate ${result.stdout} json
The command returns json but when I call evaluate, I get
Evaluating expression '[...]' failed: NameError: name 'true' is not defined nor importable as module
Which is because the json has true and false values in it that are NOT properly capitalized:
{
"up": true,
"pending": false
}
There would be no problem if they were instead written like this:
{
"up": True,
"pending": False
}
The problem is that I do not control the application returning the json.
Is there a way to get the evaluate instruction to work regardless of the first letters of true and false not being capitalized?
Thanks