From 20d8fde5b3102c2fe113a57941e8b7775376d6a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rud=C3=A1=20Moura?= Date: Thu, 31 Jul 2014 19:55:21 -0300 Subject: [PATCH] avocado.plugins.xunit: Add NL at the end of output. Signed-off-by: Ruda Moura --- avocado/plugins/xunit.py | 1 + 1 file changed, 1 insertion(+) diff --git a/avocado/plugins/xunit.py b/avocado/plugins/xunit.py index 7ebe0452..34d20d4c 100644 --- a/avocado/plugins/xunit.py +++ b/avocado/plugins/xunit.py @@ -47,6 +47,7 @@ class XmlResult(object): if filename is None: filename = self.output xml = '\n'.join(self.xml) + xml += '\n' if filename == '-': sys.stdout.write(xml) else: -- GitLab