summaryrefslogtreecommitdiffstats
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)
downloadpoky-9f2d7d816cfe36d9e3cb895f0bd4e8d81ae3bde0.tar.gz
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 2c10f380de..da3690e5ca 100644
--- a/bitbake/lib/bb/ui/ncurses.py
+++ b/bitbake/lib/bb/ui/ncurses.py
@@ -301,12 +301,12 @@ class NCursesUI:
301 taw.setText(0, 0, "") 301 taw.setText(0, 0, "")
302 if activetasks: 302 if activetasks:
303 taw.appendText("Active Tasks:\n") 303 taw.appendText("Active Tasks:\n")
304 for task in activetasks: 304 for task in activetasks.itervalues():
305 taw.appendText(task) 305 taw.appendText(task["title"])
306 if failedtasks: 306 if failedtasks:
307 taw.appendText("Failed Tasks:\n") 307 taw.appendText("Failed Tasks:\n")
308 for task in failedtasks: 308 for task in failedtasks:
309 taw.appendText(task) 309 taw.appendText(task["title"])
310 310
311 curses.doupdate() 311 curses.doupdate()
312 except KeyboardInterrupt: 312 except KeyboardInterrupt: