diff options
author | Darius Makovsky <traveltissues@protonmail.com> | 2019-09-10 12:34:40 +0100 |
---|---|---|
committer | Darius Makovsky <traveltissues@protonmail.com> | 2019-09-10 12:53:13 +0100 |
commit | 36953169751f011ea161c6efc294ac622751556f (patch) | |
tree | c74ae3a86cdc26c41ab28a867ea0d70f3619d025 /src/buildstream/_pipeline.py | |
parent | 826e12a2804dfa49d55eb59f07dd2d116ada10c2 (diff) | |
download | buildstream-36953169751f011ea161c6efc294ac622751556f.tar.gz |
Fix typo in pipeline msg detail
Diffstat (limited to 'src/buildstream/_pipeline.py')
-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" |