summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/ui/ncurses.py
diff options
context:
space:
mode:
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: