From a7fc2ae3fd40b7de36f7f9b3da64a610a698b4ed Mon Sep 17 00:00:00 2001 From: Joshua Watt Date: Thu, 25 Jun 2020 09:13:20 -0500 Subject: 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 Signed-off-by: Richard Purdie (cherry picked from commit a76290dfc6f34ff9f6efdb13a6db74b6b4759daf) Signed-off-by: Steve Sakoman --- lib/bb/siggen.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/bb/siggen.py b/lib/bb/siggen.py index 4c8d81c5d..94d1762df 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') -- cgit 1.2.3-korg