summaryrefslogtreecommitdiffstats
path: root/lib/bb/ui/knotty.py
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2010-11-23 14:02:40 -0500
committerChris Larson <chris_larson@mentor.com>2010-11-23 14:02:41 -0500
commit80867372dcbef91ebaf7d77a77ca871741dd3f74 (patch)
tree0087e8078ba28efaf4d3fb7f0a17519144a92d5b /lib/bb/ui/knotty.py
parent97ce57e6f860d3e6f34cc7a603ed1eeac4f423d3 (diff)
downloadbitbake-80867372dcbef91ebaf7d77a77ca871741dd3f74.tar.gz
knotty: drop the ETA from the progressbar for now
Currently, the progress bar is an indication of the processing of our recipes, which includes loading the cache file, then for each recipe, either adding the existing cached information to the CacheData or parsing the recipe from disk. These tasks clearly take different amounts of time, so the ETA is unreliable today. We'll resurrect this functionality after we revamp the progress handling, fully incorporating the load of the cache file. Signed-off-by: Chris Larson <chris_larson@mentor.com>
Diffstat (limited to 'lib/bb/ui/knotty.py')
-rw-r--r--lib/bb/ui/knotty.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/ui/knotty.py b/lib/bb/ui/knotty.py
index 7412b39e8..fb76dc828 100644
--- a/lib/bb/ui/knotty.py
+++ b/lib/bb/ui/knotty.py
@@ -31,7 +31,7 @@ from bb.ui import uihelper
logger = logging.getLogger("BitBake")
widgets = ['Parsing recipes: ', progressbar.Percentage(), ' ',
- progressbar.Bar(), ' ', progressbar.ETA()]
+ progressbar.Bar()]
class BBLogFormatter(logging.Formatter):
"""Formatter which ensures that our 'plain' messages (logging.INFO + 1) are used as is"""