.toprettyxml() was introducing undesired spaces between <text:span>'s

This commit is contained in:
Christopher Ramírez 2013-07-18 09:58:09 -06:00
parent 6bcced99cd
commit c98519e119

View file

@ -91,7 +91,7 @@ class BaseRender():
to do the actual rendering.
"""
template = TemplateEngine(self.xml_document.toprettyxml())
template = TemplateEngine(self.xml_document.toxml())
return template.render(**self.template_vars)