summaryrefslogtreecommitdiff
path: root/bitbake/lib/bb/ui/ncurses.py
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2010-04-09 17:55:11 -0700
committerRichard Purdie <rpurdie@linux.intel.com>2010-07-02 15:41:32 +0100
commit9f2d7d816cfe36d9e3cb895f0bd4e8d81ae3bde0 (patch)
treedddd52067c3ecf09e93c4fe20fa54f6d8a9f6472 /bitbake/lib/bb/ui/ncurses.py
parenta91d123ef4eb315c8a44b16518fa3b40cb09fb8a (diff)
downloadopenembedded-core-9f2d7d816cfe36d9e3cb895f0bd4e8d81ae3bde0.tar.gz
openembedded-core-9f2d7d816cfe36d9e3cb895f0bd4e8d81ae3bde0.tar.bz2
openembedded-core-9f2d7d816cfe36d9e3cb895f0bd4e8d81ae3bde0.tar.xz
openembedded-core-9f2d7d816cfe36d9e3cb895f0bd4e8d81ae3bde0.zip
Fix an error in the ncurses UI
(Bitbake rev: 90c68238cb62afa1c39e1d4fff1f418c9ec047e5) Signed-off-by: Chris Larson <chris_larson@mentor.com> Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake/lib/bb/ui/ncurses.py')
-rw-r--r--bitbake/lib/bb/ui/ncurses.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/lib/bb/ui/ncurses.py b/bitbake/lib/bb/ui/ncurses.py
index 2c10f380d..da3690e5c 100644
--- a/bitbake/lib/bb/ui/ncurses.py
+++ b/bitbake/lib/bb/ui/ncurses.py
@@ -301,12 +301,12 @@ class NCursesUI:
taw.setText(0, 0, "")
if activetasks:
taw.appendText("Active Tasks:\n")
- for task in activetasks:
- taw.appendText(task)
+ for task in activetasks.itervalues():
+ taw.appendText(task["title"])
if failedtasks:
taw.appendText("Failed Tasks:\n")
for task in failedtasks:
- taw.appendText(task)
+ taw.appendText(task["title"])
curses.doupdate()
except KeyboardInterrupt: