Skip to content

Commit

Permalink
verilog: fix yosys version error message
Browse files Browse the repository at this point in the history
  • Loading branch information
sbourdeauducq committed Oct 16, 2019
1 parent 58300d8 commit 07b3510
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nmigen/back/verilog.py
Expand Up @@ -24,7 +24,7 @@ def _yosys_version():
def _convert_rtlil_text(rtlil_text, *, strip_internal_attrs=False, write_verilog_opts=()):
version, offset = _yosys_version()
if version < (0, 9):
raise YosysError("Yosys %d.%d is not suppored".format(*version))
raise YosysError("Yosys {}.{} is not supported".format(*version))

attr_map = []
if strip_internal_attrs:
Expand Down

0 comments on commit 07b3510

Please sign in to comment.