summaryrefslogtreecommitdiff
path: root/src/buildstream/plugin.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/buildstream/plugin.py')
-rw-r--r--src/buildstream/plugin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildstream/plugin.py b/src/buildstream/plugin.py
index 6795043e7..f8652e5cb 100644
--- a/src/buildstream/plugin.py
+++ b/src/buildstream/plugin.py
@@ -755,7 +755,7 @@ class Plugin:
# Set the name, depending on element or source plugin type
name = self._element_name if self.__type_tag == "source" else self.name # pylint: disable=no-member
if project.junction:
- return "{}:{}".format(project.junction.name, name)
+ return "{}:{}".format(project.junction._get_full_name(), name)
else:
return name