From 28b4d99d31b4fb55f375d57553fc267af28e1bb7 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Wed, 12 Dec 2012 22:36:45 +0100 Subject: [PATCH] replace some forgotten is_abstract() --- migen/flow/network.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/migen/flow/network.py b/migen/flow/network.py index c26af1f3..f4cd69b7 100644 --- a/migen/flow/network.py +++ b/migen/flow/network.py @@ -154,7 +154,7 @@ class DataFlowGraph(MultiDiGraph): edges = self.in_edges(a, data=True) assert(len(edges) == 1) other, me, data = edges[0] - if other.is_abstract(): + if isinstance(other, AbstractActor): continue other_ep = data["source"] if other_ep is None: @@ -163,7 +163,7 @@ class DataFlowGraph(MultiDiGraph): edges = self.out_edges(a, data=True) assert(len(edges) == 1) me, other, data = edges[0] - if other.is_abstract(): + if isinstance(other, AbstractActor): continue other_ep = data["sink"] if other_ep is None: -- 2.30.2