diff options
author | Chris Larson <chris_larson@mentor.com> | 2010-04-09 17:55:11 -0700 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-02 15:41:32 +0100 |
commit | 9f2d7d816cfe36d9e3cb895f0bd4e8d81ae3bde0 (patch) | |
tree | dddd52067c3ecf09e93c4fe20fa54f6d8a9f6472 /bitbake | |
parent | a91d123ef4eb315c8a44b16518fa3b40cb09fb8a (diff) | |
download | openembedded-core-9f2d7d816cfe36d9e3cb895f0bd4e8d81ae3bde0.tar.gz openembedded-core-9f2d7d816cfe36d9e3cb895f0bd4e8d81ae3bde0.tar.bz2 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')
-rw-r--r-- | bitbake/lib/bb/ui/ncurses.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/lib/bb/ui/ncurses.py b/bitbake/lib/bb/ui/ncurses.py index 2c10f380de..da3690e5ca 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: |