From 4aa482ae70a117a6e7bed06e7603e0451778a204 Mon Sep 17 00:00:00 2001 From: Tristan Van Berkom Date: Thu, 12 Apr 2018 22:45:36 +0900 Subject: _pipeline.py: Fix inconsistent element error to print element fullnames. --- buildstream/_pipeline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() -- cgit v1.2.1