summaryrefslogtreecommitdiffstats
path: root/bitbake/lib
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib')
-rw-r--r--bitbake/lib/bb/ui/crumbs/hobeventhandler.py3
1 files changed, 2 insertions, 1 deletions
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):
187 pbar.set_text("Loading cache: %s/%s" % (event.current, bb.ui.crumbs.hobeventhandler.progress_total)) 187 pbar.set_text("Loading cache: %s/%s" % (event.current, bb.ui.crumbs.hobeventhandler.progress_total))
188 elif isinstance(event, bb.event.CacheLoadCompleted): 188 elif isinstance(event, bb.event.CacheLoadCompleted):
189 self.current_phase = None 189 self.current_phase = None
190 pbar.set_text("Loading cache: %s/%s" % (bb.ui.crumbs.hobeventhandler.progress_total, bb.ui.crumbs.hobeventhandler.progress_total)) 190 pbar.set_text("Loading...")
191 elif isinstance(event, bb.event.ParseStarted): 191 elif isinstance(event, bb.event.ParseStarted):
192 self.current_phase = "recipe parsing" 192 self.current_phase = "recipe parsing"
193 if event.total == 0: 193 if event.total == 0:
@@ -200,6 +200,7 @@ class HobHandler(gobject.GObject):
200 elif isinstance(event, bb.event.ParseCompleted): 200 elif isinstance(event, bb.event.ParseCompleted):
201 self.current_phase = None 201 self.current_phase = None
202 pbar.set_fraction(1.0) 202 pbar.set_fraction(1.0)
203 pbar.set_text("Loading...")
203 elif isinstance(event, logging.LogRecord): 204 elif isinstance(event, logging.LogRecord):
204 format = bb.msg.BBLogFormatter("%(levelname)s: %(message)s") 205 format = bb.msg.BBLogFormatter("%(levelname)s: %(message)s")
205 if event.levelno >= format.CRITICAL: 206 if event.levelno >= format.CRITICAL: