summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 b92334b02d..1723a72a8d 100644
--- a/bitbake/lib/bb/ui/knotty.py
+++ b/bitbake/lib/bb/ui/knotty.py
@@ -245,7 +245,7 @@ class TerminalFilter(object):
245 pbar = BBProgress("0: %s (pid %s) " % (activetasks[t]["title"], t), 100, widgets=[progressbar.BouncingSlider(), ''], extrapos=2) 245 pbar = BBProgress("0: %s (pid %s) " % (activetasks[t]["title"], t), 100, widgets=[progressbar.BouncingSlider(), ''], extrapos=2)
246 pbar.bouncing = True 246 pbar.bouncing = True
247 else: 247 else:
248 pbar = BBProgress("0: %s (pid %s) " % (activetasks[t]["title"], t), 100) 248 pbar = BBProgress("0: %s (pid %s) " % (activetasks[t]["title"], t), 100, widgets=[progressbar.Percentage(), ' ', progressbar.Bar(), ''], extrapos=4)
249 pbar.bouncing = False 249 pbar.bouncing = False
250 activetasks[t]["progressbar"] = pbar 250 activetasks[t]["progressbar"] = pbar
251 tasks.append((pbar, progress, rate, start_time)) 251 tasks.append((pbar, progress, rate, start_time))