summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/asyncrpc/client.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/asyncrpc/client.py b/bitbake/lib/bb/asyncrpc/client.py
index 79919c5be6..d917ab597c 100644
--- a/bitbake/lib/bb/asyncrpc/client.py
+++ b/bitbake/lib/bb/asyncrpc/client.py
@@ -77,7 +77,7 @@ class AsyncClient(object):
77 line = line.decode("utf-8") 77 line = line.decode("utf-8")
78 78
79 if not line.endswith("\n"): 79 if not line.endswith("\n"):
80 raise ConnectionError("Bad message %r" % msg) 80 raise ConnectionError("Bad message %r" % (line))
81 81
82 return line 82 return line
83 83