summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/ui
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/ui')
-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 d81e4138ba..ca845a32ad 100644
--- a/bitbake/lib/bb/ui/ncurses.py
+++ b/bitbake/lib/bb/ui/ncurses.py
@@ -297,7 +297,7 @@ class NCursesUI:
297# bb.error("log data follows (%s)" % logfile) 297# bb.error("log data follows (%s)" % logfile)
298# number_of_lines = data.getVar("BBINCLUDELOGS_LINES", d) 298# number_of_lines = data.getVar("BBINCLUDELOGS_LINES", d)
299# if number_of_lines: 299# if number_of_lines:
300# subprocess.call('tail -n%s %s' % (number_of_lines, logfile), shell=True) 300# subprocess.check_call('tail -n%s %s' % (number_of_lines, logfile), shell=True)
301# else: 301# else:
302# f = open(logfile, "r") 302# f = open(logfile, "r")
303# while True: 303# while True: