aboutsummaryrefslogtreecommitdiffstats
path: root/pyGHDL/dom/formatting/prettyprint.py
diff options
context:
space:
mode:
authorPatrick Lehmann <Patrick.Lehmann@plc2.de>2021-06-23 11:52:41 +0200
committerPatrick Lehmann <Patrick.Lehmann@plc2.de>2021-06-23 11:52:41 +0200
commit700a2e85da31c53067b4b4139b1a0c2f78818c68 (patch)
treefa1e1a11f33453464fe1fedc7d1aa734f4a96d01 /pyGHDL/dom/formatting/prettyprint.py
parent95d5cb9329ee335a64e444ed0fd93bb0950edc5a (diff)
downloadghdl-700a2e85da31c53067b4b4139b1a0c2f78818c68.tar.gz
ghdl-700a2e85da31c53067b4b4139b1a0c2f78818c68.tar.bz2
ghdl-700a2e85da31c53067b4b4139b1a0c2f78818c68.zip
First primitive handling of selected names.
Diffstat (limited to 'pyGHDL/dom/formatting/prettyprint.py')
-rw-r--r--pyGHDL/dom/formatting/prettyprint.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyGHDL/dom/formatting/prettyprint.py b/pyGHDL/dom/formatting/prettyprint.py
index 26a5d1916..3a0a49cc1 100644
--- a/pyGHDL/dom/formatting/prettyprint.py
+++ b/pyGHDL/dom/formatting/prettyprint.py
@@ -410,8 +410,8 @@ class PrettyPrint:
)
else:
raise PrettyPrintException(
- "Unhandled constraint kind for {entity} '{name}'.".format(
- entity=entity, name=name
+ "Unhandled subtype kind '{type}' for {entity} '{name}'.".format(
+ type=subTypeIndication.__class__.__name__, entity=entity, name=name
)
)