diff options
author | Tristan Gingold <tgingold@free.fr> | 2020-09-24 07:46:57 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2020-09-24 18:24:03 +0200 |
commit | 73d2b4ce553340c576a85c8d3d9461ddfd95ea0f (patch) | |
tree | 29e03a3073969f8f78ab765984981711a1a4d2f4 /python | |
parent | 6ea238c5598b6db98a8fc161a1493b4b3446ce90 (diff) | |
download | ghdl-73d2b4ce553340c576a85c8d3d9461ddfd95ea0f.tar.gz ghdl-73d2b4ce553340c576a85c8d3d9461ddfd95ea0f.tar.bz2 ghdl-73d2b4ce553340c576a85c8d3d9461ddfd95ea0f.zip |
pnodes.py: fix a typo
Diffstat (limited to 'python')
-rwxr-xr-x | python/xtools/pnodes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/xtools/pnodes.py b/python/xtools/pnodes.py index 4a1955c91..793c1c712 100755 --- a/python/xtools/pnodes.py +++ b/python/xtools/pnodes.py @@ -459,7 +459,7 @@ def read_nodes(filename, kinds, kinds_ranges, fields, funcs): for k in kinds: if k not in nodes: - raise ParseError(lr, 'no desription for "{}"'.format(k)) + raise ParseError(lr, 'no description for "{}"'.format(k)) return nodes |