diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-05-09 18:24:08 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-05-10 18:14:47 +0200 |
commit | 0f995708288bb330cefeac11187ce064c2ec3bb1 (patch) | |
tree | 6af8f0066e760de181a43dd1e570308d6ce39247 /src/vhdl/python | |
parent | 987a94c378dfb969e8bb7f1b734f29a33e63212e (diff) | |
download | ghdl-0f995708288bb330cefeac11187ce064c2ec3bb1.tar.gz ghdl-0f995708288bb330cefeac11187ce064c2ec3bb1.tar.bz2 ghdl-0f995708288bb330cefeac11187ce064c2ec3bb1.zip |
Move errorout from vhdl/ to src/
Diffstat (limited to 'src/vhdl/python')
-rwxr-xr-x | src/vhdl/python/pnodespy.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vhdl/python/pnodespy.py b/src/vhdl/python/pnodespy.py index bcc8d9fbe..54a025e1f 100755 --- a/src/vhdl/python/pnodespy.py +++ b/src/vhdl/python/pnodespy.py @@ -221,7 +221,7 @@ def do_libghdl_tokens(): def do_libghdl_errorout(): - read_enum("errorout.ads", "Msgid_Type", "(Msgid|Warnid)_", "Msgid", + read_enum("../errorout.ads", "Msgid_Type", "(Msgid|Warnid)_", "Msgid", g=lambda m: m.group(1) + '_' + m.group(2)) |