Browse Source

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.

Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Tim Orling 3 years ago
parent
commit
f504d6f659
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/bb/ui/knotty.py

+ 1 - 1
lib/bb/ui/knotty.py

@@ -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)))