From 6b9521743fa33070ac74ebc4ab1744f933e21691 Mon Sep 17 00:00:00 2001 From: Joshua Lock Date: Wed, 3 Aug 2011 12:15:42 -0700 Subject: bb/ui/crumbs/hobeventhandler: use generic loading message once cache loaded (Bitbake rev: 110d507c69c756657393809f57443b88841ad091) Signed-off-by: Joshua Lock Signed-off-by: Richard Purdie --- bitbake/lib/bb/ui/crumbs/hobeventhandler.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'bitbake/lib') diff --git a/bitbake/lib/bb/ui/crumbs/hobeventhandler.py b/bitbake/lib/bb/ui/crumbs/hobeventhandler.py index e8265f1136..2e0a99900d 100644 --- a/bitbake/lib/bb/ui/crumbs/hobeventhandler.py +++ b/bitbake/lib/bb/ui/crumbs/hobeventhandler.py @@ -187,7 +187,7 @@ class HobHandler(gobject.GObject): pbar.set_text("Loading cache: %s/%s" % (event.current, bb.ui.crumbs.hobeventhandler.progress_total)) elif isinstance(event, bb.event.CacheLoadCompleted): self.current_phase = None - pbar.set_text("Loading cache: %s/%s" % (bb.ui.crumbs.hobeventhandler.progress_total, bb.ui.crumbs.hobeventhandler.progress_total)) + pbar.set_text("Loading...") elif isinstance(event, bb.event.ParseStarted): self.current_phase = "recipe parsing" if event.total == 0: @@ -200,6 +200,7 @@ class HobHandler(gobject.GObject): elif isinstance(event, bb.event.ParseCompleted): self.current_phase = None pbar.set_fraction(1.0) + pbar.set_text("Loading...") elif isinstance(event, logging.LogRecord): format = bb.msg.BBLogFormatter("%(levelname)s: %(message)s") if event.levelno >= format.CRITICAL: -- cgit v1.2.3-54-g00ecf