summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJürg Billeter <j@bitron.ch>2019-03-14 09:47:25 +0000
committerJürg Billeter <j@bitron.ch>2019-03-15 09:40:05 +0000
commit046a9df897e6b2a0cb8be4e02c08ffa8fc4db0be (patch)
tree88468b32e578a38666349fba7caccca03a32c6e9
parent7f890c5681feff7017843df8e9cc362a06fcdf3b (diff)
downloadbuildstream-046a9df897e6b2a0cb8be4e02c08ffa8fc4db0be.tar.gz
_stream.py: Fix buildtree error message formatting in shell()
This removes extraneous spaces.
-rw-r--r--buildstream/_stream.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/buildstream/_stream.py b/buildstream/_stream.py
index f1600a8e9..4a475d83f 100644
--- a/buildstream/_stream.py
+++ b/buildstream/_stream.py
@@ -184,8 +184,8 @@ class Stream():
if usebuildtree == "always":
raise StreamError("Buildtree is not cached locally or in available remotes")
else:
- self._message(MessageType.INFO, """Buildtree is not cached locally or in available remotes,
- shell will be loaded without it""")
+ self._message(MessageType.INFO, "Buildtree is not cached locally or in available remotes, " +
+ "shell will be loaded without it")
else:
buildtree = True