diff options
Diffstat (limited to 'meta/classes')
| -rw-r--r-- | meta/classes/sstate.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass index 8ee32dba2d..49d54bc94a 100644 --- a/meta/classes/sstate.bbclass +++ b/meta/classes/sstate.bbclass | |||
| @@ -994,9 +994,9 @@ def sstate_checkhashes(sq_data, d, siginfo=False, currentcount=0, summary=True, | |||
| 994 | found.add(tid) | 994 | found.add(tid) |
| 995 | missed.remove(tid) | 995 | missed.remove(tid) |
| 996 | except bb.fetch2.FetchError as e: | 996 | except bb.fetch2.FetchError as e: |
| 997 | bb.debug(2, "SState: Unsuccessful fetch test for %s (%s)" % (srcuri, e)) | 997 | bb.debug(2, "SState: Unsuccessful fetch test for %s (%s)" % (srcuri, repr(e))) |
| 998 | except Exception as e: | 998 | except Exception as e: |
| 999 | bb.error("SState: cannot test %s: %s" % (srcuri, e)) | 999 | bb.error("SState: cannot test %s: %s" % (srcuri, repr(e))) |
| 1000 | 1000 | ||
| 1001 | if progress: | 1001 | if progress: |
| 1002 | bb.event.fire(bb.event.ProcessProgress(msg, len(tasklist) - thread_worker.tasks.qsize()), d) | 1002 | bb.event.fire(bb.event.ProcessProgress(msg, len(tasklist) - thread_worker.tasks.qsize()), d) |
