]> code.ossystems Code Review - openembedded-core.git/commitdiff
Fix an error in the ncurses UI
authorChris Larson <chris_larson@mentor.com>
Sat, 10 Apr 2010 00:55:11 +0000 (17:55 -0700)
committerRichard Purdie <rpurdie@linux.intel.com>
Fri, 2 Jul 2010 14:41:32 +0000 (15:41 +0100)
(Bitbake rev: 90c68238cb62afa1c39e1d4fff1f418c9ec047e5)

Signed-off-by: Chris Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
bitbake/lib/bb/ui/ncurses.py

index 2c10f380ded72fbbce15265dbab527ba75ad2a4f..da3690e5ca134b03ecda8a02d4fe8ca122303402 100644 (file)
@@ -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: