[oe-commits] [openembedded-core] 57/59: insane: return line-feeds to qa.log

git at git.openembedded.org git at git.openembedded.org
Mon May 30 22:00:29 UTC 2016


rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit 12518ed7e14ae8586df7b3909465103bb3e6f3e3
Author: Martin Jansa <martin.jansa at gmail.com>
AuthorDate: Mon May 30 12:20:28 2016 +0200

    insane: return line-feeds to qa.log
    
    Signed-off-by: Martin Jansa <Martin.Jansa at gmail.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/classes/insane.bbclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass
index 116abc4..71999ad 100644
--- a/meta/classes/insane.bbclass
+++ b/meta/classes/insane.bbclass
@@ -178,7 +178,7 @@ def package_qa_write_error(type, error, d):
     if logfile:
         p = d.getVar('P', True)
         with open(logfile, "a+") as f:
-            f.write("%s: %s [%s]" % (p, error, type))
+            f.write("%s: %s [%s]\n" % (p, error, type))
 
 def package_qa_handle_error(error_class, error_msg, d):
     package_qa_write_error(error_class, error_msg, d)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list