From e26589eb1963956a68123ff6dcb4620dc40a1de0 Mon Sep 17 00:00:00 2001 From: Tom Zanussi Date: Mon, 6 Aug 2012 00:56:55 -0500 Subject: yocto-bsp: use rstrip() for assignment lines strip() isn't necessary and causes unintended formatting changes in the output; rstrip() remove the trailing newlines as intended while leaving indenting whitespace intact. (From meta-yocto rev: 0caa6cd8c094b531ee8e78154dbf5a8e6014d1fd) Signed-off-by: Tom Zanussi Signed-off-by: Saul Wold Signed-off-by: Richard Purdie --- scripts/lib/bsp/engine.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/lib/bsp') diff --git a/scripts/lib/bsp/engine.py b/scripts/lib/bsp/engine.py index 857e5a09c0..7a98f447c3 100644 --- a/scripts/lib/bsp/engine.py +++ b/scripts/lib/bsp/engine.py @@ -658,7 +658,7 @@ class SubstrateBase(object): """ Expand all tags in a line. """ - expanded_line = AssignmentLine(line.strip()) + expanded_line = AssignmentLine(line.rstrip()) while start != -1: end = line.find(CLOSE_TAG, start) -- cgit v1.2.3-54-g00ecf