aboutsummaryrefslogtreecommitdiffstats
path: root/pyGHDL/dom/formatting/GraphML.py
diff options
context:
space:
mode:
authorUnai Martinez-Corral <38422348+umarcor@users.noreply.github.com>2023-04-19 20:27:33 +0200
committerGitHub <noreply@github.com>2023-04-19 20:27:33 +0200
commitcc5cf36c2d2e87eaf01b608c7391abdba8f9fff7 (patch)
tree49769a8bc72fd1d950074a74f38475016df2b11b /pyGHDL/dom/formatting/GraphML.py
parent6544b839fe6dceb56cb544bc4f69f0ab28100172 (diff)
parent989ec4ce0d43b90a5ada0a582c5b1ec6e610cb06 (diff)
downloadghdl-cc5cf36c2d2e87eaf01b608c7391abdba8f9fff7.tar.gz
ghdl-cc5cf36c2d2e87eaf01b608c7391abdba8f9fff7.tar.bz2
ghdl-cc5cf36c2d2e87eaf01b608c7391abdba8f9fff7.zip
pyGHDL: Reworked Symbols and Names (#2412)
Diffstat (limited to 'pyGHDL/dom/formatting/GraphML.py')
-rw-r--r--pyGHDL/dom/formatting/GraphML.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyGHDL/dom/formatting/GraphML.py b/pyGHDL/dom/formatting/GraphML.py
index 7f72d54b5..0ad31e33f 100644
--- a/pyGHDL/dom/formatting/GraphML.py
+++ b/pyGHDL/dom/formatting/GraphML.py
@@ -91,7 +91,7 @@ class DependencyGraphFormatter:
for vertex in vertices:
if vertex["kind"] is DependencyGraphVertexKind.Architecture:
- value = f"{vertex.Value.Entity.Identifier}({vertex.Value.Identifier})"
+ value = f"{vertex.Value.Entity.Name.Identifier}({vertex.Value.Identifier})"
elif vertex["kind"] is DependencyGraphVertexKind.Document:
value = f"{vertex.ID}"
else: