diff options
author | bst-marge-bot <marge-bot@buildstream.build> | 2019-09-10 12:35:15 +0000 |
---|---|---|
committer | bst-marge-bot <marge-bot@buildstream.build> | 2019-09-10 12:35:15 +0000 |
commit | 3db8f6e6ce1740c42331656da8cc5de9cd4e6db3 (patch) | |
tree | c74ae3a86cdc26c41ab28a867ea0d70f3619d025 | |
parent | 826e12a2804dfa49d55eb59f07dd2d116ada10c2 (diff) | |
parent | 36953169751f011ea161c6efc294ac622751556f (diff) | |
download | buildstream-3db8f6e6ce1740c42331656da8cc5de9cd4e6db3.tar.gz |
Merge branch 'traveltissues/typo' into 'master'
Fix typo in pipeline msg detail
See merge request BuildStream/buildstream!1594
-rw-r--r-- | src/buildstream/_pipeline.py | 2 |
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" |