aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoshua Watt <JPEWhacker@gmail.com>2020-06-25 09:13:20 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-06-26 18:57:59 +0100
commita76290dfc6f34ff9f6efdb13a6db74b6b4759daf (patch)
tree6a5583dcd02cc7d733afe48ff9c901249a58f24e
parente27a28c1e40e886ee68ba4b99b537ffc9c3577d4 (diff)
downloadbitbake-a76290dfc6f34ff9f6efdb13a6db74b6b4759daf.tar.gz
siggen: Fix error when hash equivalence has an exception
The code that handled exceptions from the hash equivalence client was raising an exception itself because hashserv.client wasn't imported Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--lib/bb/siggen.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/bb/siggen.py b/lib/bb/siggen.py
index 872333d7f..4c63b0baa 100644
--- a/lib/bb/siggen.py
+++ b/lib/bb/siggen.py
@@ -14,6 +14,7 @@ import simplediff
from bb.checksum import FileChecksumCache
from bb import runqueue
import hashserv
+import hashserv.client
logger = logging.getLogger('BitBake.SigGen')
hashequiv_logger = logging.getLogger('BitBake.SigGen.HashEquiv')