aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick Lehmann <Patrick.Lehmann@plc2.de>2020-12-29 09:29:54 +0100
committerPatrick Lehmann <Patrick.Lehmann@plc2.de>2020-12-29 09:29:54 +0100
commitdbf79e18f82755d1bdcf0909f43bdfb751650e7b (patch)
tree884de986b9aade5e6c6ef00662ff24035397d5ac
parent2e1a5018114bd85d3eafb299d6e48ad6ab8809f5 (diff)
downloadghdl-dbf79e18f82755d1bdcf0909f43bdfb751650e7b.tar.gz
ghdl-dbf79e18f82755d1bdcf0909f43bdfb751650e7b.tar.bz2
ghdl-dbf79e18f82755d1bdcf0909f43bdfb751650e7b.zip
Fixed regexp in 'pnodespy.py'.
-rwxr-xr-xscripts/pnodespy.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/pnodespy.py b/scripts/pnodespy.py
index 70bcc10a8..962ffa988 100755
--- a/scripts/pnodespy.py
+++ b/scripts/pnodespy.py
@@ -216,7 +216,7 @@ def do_libghdl_names():
if m:
name_def = m.group(1)
name_ref = m.group(2)
- val = m.group(3)
+ val = m.group(4)
if not val:
val = 0
val_ref = dict.get(name_ref, None)