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-16 07:24:58 +0100
commit832e0021927fe5d942bb34d6059e7a006dc5b112 (patch)
treefe98ee4f17ce512f63440455318d1b0b3e3d0636
parent101bebaae4d6a8ed80ff987a04ff580690655628 (diff)
downloadbuildstream-832e0021927fe5d942bb34d6059e7a006dc5b112.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