-
Notifications
You must be signed in to change notification settings - Fork 2
Closed
Labels
backlogbugSomething isn't workingSomething isn't workingprio 2ready for verifyingsuccessfully tested
Description
The code
"keyP" : "A",
"B" : 1,
"dictP" : {"A" : "B", "C" : 2},
"newparam" : "${${dictP}['${keyP}']}"
results in newparam with string value '1' (like expected).
But when I omit the single quotes
"newparam" : "${${dictP}[${keyP}]}"
the result is:
'list index out of range'!
But expected is still newparam with string value '1' (because keyP is a string already, therefore the single quotes
do not have any effect)
Metadata
Metadata
Assignees
Labels
backlogbugSomething isn't workingSomething isn't workingprio 2ready for verifyingsuccessfully tested
Projects
Status
Done