Fix lookup of source var that references an array

This commit is contained in:
baldurk
2020-07-16 20:39:11 +01:00
parent 1316dbc65b
commit c912ccc3a8
+1 -1
View File
@@ -566,7 +566,7 @@ class TestCase:
remaining = ''
# Otherwise, take off any child if we haven't started recursing
m = re.match("([a-zA-Z0-9_]+)(\[|\..*)", path)
m = re.match("([a-zA-Z0-9_]+)(\[.*|\..*)", path)
if m:
child = m.group(1)
remaining = m.group(2)