aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bb/ui/ncurses.py
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2010-04-09 17:55:11 -0700
committerChris Larson <chris_larson@mentor.com>2010-04-09 17:55:11 -0700
commit90c68238cb62afa1c39e1d4fff1f418c9ec047e5 (patch)
treea8d720e98412dcb3d1fa7c0f86d58fc30c13bf26 /lib/bb/ui/ncurses.py
parent648415a562d92109c4945cb3cc98ed2ec44667a7 (diff)
downloadbitbake-90c68238cb62afa1c39e1d4fff1f418c9ec047e5.tar.gz
Fix an error in the ncurses UI
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Diffstat (limited to 'lib/bb/ui/ncurses.py')
-rw-r--r--lib/bb/ui/ncurses.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/bb/ui/ncurses.py b/lib/bb/ui/ncurses.py
index 2c10f380d..da3690e5c 100644
--- a/lib/bb/ui/ncurses.py
+++ b/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: