Skip to content

Commit fd80f74

Browse files
committed
RucursionError -> RuntimeError for Python3.4
1 parent dca47e7 commit fd80f74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

veriloggen/dataflow/dataflow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def implement(self, m, clock, reset, seq_name='seq', aswire=False):
4848

4949
try:
5050
dataflow_nodes = copy.deepcopy(self.nodes)
51-
except RecursionError:
51+
except RuntimeError:
5252
dataflow_nodes = self.nodes
5353
limit = sys.getrecursionlimit()
5454
print("Warning: Current dataflow definitions are not copied.", file=sys.stderr)

0 commit comments

Comments
 (0)