diff options
author | Tim 'mithro' Ansell <me@mith.ro> | 2018-06-22 19:21:01 -0700 |
---|---|---|
committer | Tim 'mithro' Ansell <me@mith.ro> | 2018-06-22 21:44:39 -0700 |
commit | e2adc23681c35bf67834d636a62f4d9c7cf18220 (patch) | |
tree | 56382046d510fae7fb2f8c58e1f171f87657e8ba /icebox | |
parent | 16a9962fb16d50683a7b69835194703c48bc1759 (diff) | |
download | icestorm-e2adc23681c35bf67834d636a62f4d9c7cf18220.tar.gz icestorm-e2adc23681c35bf67834d636a62f4d9c7cf18220.tar.bz2 icestorm-e2adc23681c35bf67834d636a62f4d9c7cf18220.zip |
icebox_hlc2asc: Fix spelling in error message.
Diffstat (limited to 'icebox')
-rwxr-xr-x | icebox/icebox_hlc2asc.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/icebox/icebox_hlc2asc.py b/icebox/icebox_hlc2asc.py index c26b173..cb9ab1c 100755 --- a/icebox/icebox_hlc2asc.py +++ b/icebox/icebox_hlc2asc.py @@ -293,7 +293,7 @@ def revert_to_fabout(x, y, net): for i, xy in enumerate(GLB_NETWK_INTERNAL_TILES): if net == 'glb_netwk_%d' % i and (x, y) == xy: return 'fabout' - raise ParseError("{} is a global netowrk, but not at an expectd location {} {}".format(net, x, y)) + raise ParseError("{} is a global network, but not at an expected location {} {}".format(net, x, y)) return net @@ -956,7 +956,7 @@ class IOTile(Tile): if fields == ['io_1'] and self.blocks[1] is None: self.blocks[1] = IOBlock(self, 1) return self.blocks[1] - raise ParseError("Unepxected new block in {}".format(type(self).__name__)) + raise ParseError("Unexpected new block in {}".format(type(self).__name__)) class IOBlock: def __init__(self, tile, index): |