summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorTim Orling <timothy.t.orling@linux.intel.com>2020-10-14 11:20:52 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-10-17 12:36:14 +0100
commit98e5d24fa9a826718d613c06ca6aeb89f9947d08 (patch)
tree7642210e33f51619b33a093653b7e49fc1c2b283 /bitbake
parentb50b6007e5fab1b2f7634836dcaa775c8836edce (diff)
downloadpoky-98e5d24fa9a826718d613c06ca6aeb89f9947d08.tar.gz
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>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/ui/knotty.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/knotty.py b/bitbake/lib/bb/ui/knotty.py
index a91e4fd15c..0efa614dfc 100644
--- a/bitbake/lib/bb/ui/knotty.py
+++ b/bitbake/lib/bb/ui/knotty.py
@@ -692,7 +692,7 @@ def main(server, eventHandler, params, tf = TerminalFilter):
692 if not parseprogress: 692 if not parseprogress:
693 continue 693 continue
694 parseprogress.finish() 694 parseprogress.finish()
695 pasreprogress = None 695 parseprogress = None
696 if params.options.quiet == 0: 696 if params.options.quiet == 0:
697 print(("Parsing of %d .bb files complete (%d cached, %d parsed). %d targets, %d skipped, %d masked, %d errors." 697 print(("Parsing of %d .bb files complete (%d cached, %d parsed). %d targets, %d skipped, %d masked, %d errors."
698 % ( event.total, event.cached, event.parsed, event.virtuals, event.skipped, event.masked, event.errors))) 698 % ( event.total, event.cached, event.parsed, event.virtuals, event.skipped, event.masked, event.errors)))