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.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/ncurses.py b/bitbake/lib/bb/ui/ncurses.py
index ca845a32ad..8690c529cc 100644
--- a/bitbake/lib/bb/ui/ncurses.py
+++ b/bitbake/lib/bb/ui/ncurses.py
@@ -315,7 +315,7 @@ class NCursesUI:
315 # also allow them to now exit with a single ^C 315 # also allow them to now exit with a single ^C
316 shutdown = 2 316 shutdown = 2
317 if isinstance(event, bb.command.CommandFailed): 317 if isinstance(event, bb.command.CommandFailed):
318 mw.appendText("Command execution failed: %s" % event.error) 318 mw.appendText(str(event))
319 time.sleep(2) 319 time.sleep(2)
320 exitflag = True 320 exitflag = True
321 if isinstance(event, bb.command.CommandExit): 321 if isinstance(event, bb.command.CommandExit):