|
|
@ -118,7 +118,7 @@ class TaintRunner: |
|
|
|
direct_children = [statespace.nodes[edge.node_to] for edge in statespace.edges if edge.node_from == node.uid] |
|
|
|
direct_children = [statespace.nodes[edge.node_to] for edge in statespace.edges if edge.node_from == node.uid] |
|
|
|
children = [] |
|
|
|
children = [] |
|
|
|
for child in direct_children: |
|
|
|
for child in direct_children: |
|
|
|
if child.states[0].environment == environment: |
|
|
|
if child.states[0].environment.active_account == environment.active_account: |
|
|
|
children.append(child) |
|
|
|
children.append(child) |
|
|
|
else: |
|
|
|
else: |
|
|
|
children += TaintRunner.children(child, statespace, environment) |
|
|
|
children += TaintRunner.children(child, statespace, environment) |
|
|
|