mirror of
https://git.yoctoproject.org/poky
synced 2026-04-18 03:32:13 +02:00
bitbake: lib/bb/ui/knotty: fix typo in parseprogress
After parseprogress.finish() it was intended to set parseprogress to None, but a typo means this is not happening. (Bitbake rev: f504d6f6598f62aa20fbf69c30fea95569858edb) Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
b50b6007e5
commit
98e5d24fa9
@@ -692,7 +692,7 @@ def main(server, eventHandler, params, tf = TerminalFilter):
|
||||
if not parseprogress:
|
||||
continue
|
||||
parseprogress.finish()
|
||||
pasreprogress = None
|
||||
parseprogress = None
|
||||
if params.options.quiet == 0:
|
||||
print(("Parsing of %d .bb files complete (%d cached, %d parsed). %d targets, %d skipped, %d masked, %d errors."
|
||||
% ( event.total, event.cached, event.parsed, event.virtuals, event.skipped, event.masked, event.errors)))
|
||||
|
||||
Reference in New Issue
Block a user