mirror of
https://git.yoctoproject.org/poky
synced 2026-04-13 14:02:21 +02: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, "")
|
||||
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:
|
||||
|
||||
Reference in New Issue
Block a user