From 8b79e411c730ea883ee63278cd15583fbb623867 Mon Sep 17 00:00:00 2001 From: Bruno Nocera Zanette <brunonzanette@gmail.com> Date: Tue, 17 Sep 2013 15:21:30 -0300 Subject: [PATCH] Fix typo on open file function Fixed a typo on open file function Signed-off-by: Bruno Nocera Zanette <brunonzanette@gmail.com> --- lib/xml/write_support_functions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/xml/write_support_functions.py b/lib/xml/write_support_functions.py index e3a2e91..0e9d412 100644 --- a/lib/xml/write_support_functions.py +++ b/lib/xml/write_support_functions.py @@ -33,7 +33,7 @@ import queries_definition as qry #--------------------------------------------------------------------# def open_xml_file (xml_filename): xml_file = codecs.open(xml_filename,'w',encoding='utf-8') - xml_file.write("<?xml version=\"1.0\" encoding=\"UTF-8\"?") + xml_file.write("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n") return xml_file #--------------------------------------------------------------------# -- GitLab