diff options
| author | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2023-04-15 10:43:09 +0200 | 
|---|---|---|
| committer | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2023-04-15 10:43:09 +0200 | 
| commit | d67bfa80c0c7d013a99636d7959cf433000ab2e7 (patch) | |
| tree | 4b5f37cd0e0f2aeb460d2d188bc15f1181e9614c /pyGHDL/dom/Attribute.py | |
| parent | bee2616e7fed89c042f79592ddfafa2f6aea451e (diff) | |
| download | ghdl-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.py | 2 | 
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) | 
