summaryrefslogtreecommitdiff
path: root/src/buildstream/_pipeline.py
diff options
context:
space:
mode:
authorDarius Makovsky <traveltissues@protonmail.com>2019-09-10 12:34:40 +0100
committerDarius Makovsky <traveltissues@protonmail.com>2019-09-10 12:53:13 +0100
commit36953169751f011ea161c6efc294ac622751556f (patch)
treec74ae3a86cdc26c41ab28a867ea0d70f3619d025 /src/buildstream/_pipeline.py
parent826e12a2804dfa49d55eb59f07dd2d116ada10c2 (diff)
downloadbuildstream-36953169751f011ea161c6efc294ac622751556f.tar.gz
Fix typo in pipeline msg detail
Diffstat (limited to 'src/buildstream/_pipeline.py')
-rw-r--r--src/buildstream/_pipeline.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildstream/_pipeline.py b/src/buildstream/_pipeline.py
index 23fc52f63..b9efc7826 100644
--- a/src/buildstream/_pipeline.py
+++ b/src/buildstream/_pipeline.py
@@ -432,7 +432,7 @@ class Pipeline():
raise PipelineError("Inconsistent pipeline", detail=detail, reason="inconsistent-pipeline")
if inconsistent_workspaced:
- detail = "Some workspaces do not exist but are not closed\n" + \
+ detail = "Some workspaces exist but are not closed\n" + \
"Try closing them with `bst workspace close`\n\n"
for element in inconsistent_workspaced:
detail += " " + element._get_full_name() + "\n"