summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2018-04-12 22:45:36 +0900
committerTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2018-04-13 00:01:36 +0900
commit4aa482ae70a117a6e7bed06e7603e0451778a204 (patch)
tree60f347804a0f3ed69381bab1ab263ac91e90f0f8
parente3e726168c0a62875b04af543515aeb2f60dfc09 (diff)
downloadbuildstream-4aa482ae70a117a6e7bed06e7603e0451778a204.tar.gz
_pipeline.py: Fix inconsistent element error to print element fullnames.
-rw-r--r--buildstream/_pipeline.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildstream/_pipeline.py b/buildstream/_pipeline.py
index 5cef4ceb2..98d96328a 100644
--- a/buildstream/_pipeline.py
+++ b/buildstream/_pipeline.py
@@ -742,7 +742,7 @@ class Pipeline():
detail = "Exact versions are missing for the following elements\n" + \
"Try tracking these elements first with `bst track`\n\n"
for element in inconsistent:
- detail += " " + element.name + "\n"
+ detail += " " + element._get_full_name() + "\n"
raise PipelineError("Inconsistent pipeline", detail=detail, reason="inconsistent-pipeline")
# _filter_cross_junction()