diff options
author | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2021-06-23 11:52:41 +0200 |
---|---|---|
committer | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2021-06-23 11:52:41 +0200 |
commit | 700a2e85da31c53067b4b4139b1a0c2f78818c68 (patch) | |
tree | fa1e1a11f33453464fe1fedc7d1aa734f4a96d01 /pyGHDL/dom/formatting | |
parent | 95d5cb9329ee335a64e444ed0fd93bb0950edc5a (diff) | |
download | ghdl-700a2e85da31c53067b4b4139b1a0c2f78818c68.tar.gz ghdl-700a2e85da31c53067b4b4139b1a0c2f78818c68.tar.bz2 ghdl-700a2e85da31c53067b4b4139b1a0c2f78818c68.zip |
First primitive handling of selected names.
Diffstat (limited to 'pyGHDL/dom/formatting')
-rw-r--r-- | pyGHDL/dom/formatting/prettyprint.py | 4 |
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 ) ) |