[poky] [PATCH 51/57] yocto-bsp: use rstrip() for assignment lines
Scott Garman
scott.a.garman at intel.com
Mon Aug 13 14:20:17 PDT 2012
From: Tom Zanussi <tom.zanussi at intel.com>
strip() isn't necessary and causes unintended formatting changes in
the output; rstrip() remove the trailing newlines as intended while
leaving indenting whitespace intact.
Signed-off-by: Tom Zanussi <tom.zanussi at intel.com>
---
scripts/lib/bsp/engine.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/lib/bsp/engine.py b/scripts/lib/bsp/engine.py
index 756b882..af90e91 100644
--- a/scripts/lib/bsp/engine.py
+++ b/scripts/lib/bsp/engine.py
@@ -668,7 +668,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)
--
1.7.9.5
More information about the poky
mailing list