aboutsummaryrefslogtreecommitdiffstats
path: root/pyGHDL/dom/Attribute.py
diff options
context:
space:
mode:
authorPatrick Lehmann <Patrick.Lehmann@plc2.de>2023-04-15 10:43:09 +0200
committerPatrick Lehmann <Patrick.Lehmann@plc2.de>2023-04-15 10:43:09 +0200
commitd67bfa80c0c7d013a99636d7959cf433000ab2e7 (patch)
tree4b5f37cd0e0f2aeb460d2d188bc15f1181e9614c /pyGHDL/dom/Attribute.py
parentbee2616e7fed89c042f79592ddfafa2f6aea451e (diff)
downloadghdl-d67bfa80c0c7d013a99636d7959cf433000ab2e7.tar.gz
ghdl-d67bfa80c0c7d013a99636d7959cf433000ab2e7.tar.bz2
ghdl-d67bfa80c0c7d013a99636d7959cf433000ab2e7.zip
Modifications due to changes in Symbols.
Diffstat (limited to 'pyGHDL/dom/Attribute.py')
-rw-r--r--pyGHDL/dom/Attribute.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyGHDL/dom/Attribute.py b/pyGHDL/dom/Attribute.py
index 7dcb7b1ef..08295817d 100644
--- a/pyGHDL/dom/Attribute.py
+++ b/pyGHDL/dom/Attribute.py
@@ -63,7 +63,7 @@ class Attribute(VHDLModel_Attribute, DOMMixin):
subtypeMark = nodes.Get_Type_Mark(attributeNode)
subtypeName = GetNameOfNode(subtypeMark)
- subtype = SimpleSubtypeSymbol(subtypeMark, subtypeName)
+ subtype = SimpleSubtypeSymbol(subtypeMark, SimpleName(subtypeName))
return cls(attributeNode, name, subtype, documentation)