1
0
mirror of https://github.com/myhdl/myhdl.git synced 2024-12-14 07:44:38 +08:00

Bug fix merge from default

--HG--
branch : 0.9-dev
This commit is contained in:
Jan Decaluwe 2013-09-14 12:56:24 +02:00
commit c92725fb36

View File

@ -223,7 +223,7 @@ class _SigNameVisitor(ast.NodeVisitor):
elif self.context == OUTPUT:
self.outputs.add(id)
elif self.context == INOUT:
raise AlwaysSeqError(_error.SigAugAssign % id)
raise AlwaysSeqError(_error.SigAugAssign, id)
else:
raise AssertionError("bug in always_seq")