verilog: fix yosys version error message
authorSebastien Bourdeauducq <sb@m-labs.hk>
Wed, 16 Oct 2019 05:10:19 +0000 (13:10 +0800)
committerSebastien Bourdeauducq <sb@m-labs.hk>
Wed, 16 Oct 2019 05:10:19 +0000 (13:10 +0800)
nmigen/back/verilog.py

index b1e29a66c2745e8180cc6cebfce6107b71138691..8faf58adb4c088bccfb0b4162cd711e3e54213b9 100644 (file)
@@ -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: