From 01d67bfa77e68a5af97dc7dc2507c341cf4f83e4 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Fri, 18 Dec 2015 11:02:41 +0000 Subject: bitbake: knotty: Fix row/column function return value issue When the row handling was introduced, one of the callbacks was missed resulting in: TypeError: can only concatenate tuple (not "int") to tuple Fix it. (Bitbake rev: 0b77cea2bf5b5f5704e2650fb0332f5d78037781) Signed-off-by: Richard Purdie --- bitbake/lib/bb/ui/knotty.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bitbake/lib/bb/ui') diff --git a/bitbake/lib/bb/ui/knotty.py b/bitbake/lib/bb/ui/knotty.py index c3d73b9540..042b79e4b0 100644 --- a/bitbake/lib/bb/ui/knotty.py +++ b/bitbake/lib/bb/ui/knotty.py @@ -171,7 +171,7 @@ class TerminalFilter(object): signal.signal(signal.SIGWINCH, self.sigwinch_handle) except: pass - self.columns = self.getTerminalColumns() + self.rows, self.columns = self.getTerminalColumns() except: self.cuu = None console.addFilter(InteractConsoleLogFilter(self, format)) -- cgit v1.2.3-54-g00ecf