All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] lib/bb/ui/knotty: fix typo in parseprogress
@ 2020-10-14 18:20 Tim Orling
  0 siblings, 0 replies; only message in thread
From: Tim Orling @ 2020-10-14 18:20 UTC (permalink / raw)
  To: bitbake-devel; +Cc: Tim Orling

From: Tim Orling <timothy.t.orling@linux.intel.com>

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>
---
 lib/bb/ui/knotty.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/bb/ui/knotty.py b/lib/bb/ui/knotty.py
index a91e4fd1..0efa614d 100644
--- a/lib/bb/ui/knotty.py
+++ b/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)))
-- 
2.25.0


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2020-10-14 18:20 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-10-14 18:20 [PATCH] lib/bb/ui/knotty: fix typo in parseprogress Tim Orling

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.