mirror of
https://git.yoctoproject.org/poky
synced 2026-05-31 12:49:46 +00:00
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>
This commit is contained in:
committed by
Richard Purdie
parent
a91d123ef4
commit
9f2d7d816c
@@ -301,12 +301,12 @@ class NCursesUI:
|
|||||||
taw.setText(0, 0, "")
|
taw.setText(0, 0, "")
|
||||||
if activetasks:
|
if activetasks:
|
||||||
taw.appendText("Active Tasks:\n")
|
taw.appendText("Active Tasks:\n")
|
||||||
for task in activetasks:
|
for task in activetasks.itervalues():
|
||||||
taw.appendText(task)
|
taw.appendText(task["title"])
|
||||||
if failedtasks:
|
if failedtasks:
|
||||||
taw.appendText("Failed Tasks:\n")
|
taw.appendText("Failed Tasks:\n")
|
||||||
for task in failedtasks:
|
for task in failedtasks:
|
||||||
taw.appendText(task)
|
taw.appendText(task["title"])
|
||||||
|
|
||||||
curses.doupdate()
|
curses.doupdate()
|
||||||
except KeyboardInterrupt:
|
except KeyboardInterrupt:
|
||||||
|
|||||||
Reference in New Issue
Block a user