From c98519e1199327789482107313c2da1673f8cc2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christopher=20Ram=C3=ADrez?= Date: Thu, 18 Jul 2013 09:58:09 -0600 Subject: [PATCH] .toprettyxml() was introducing undesired spaces between 's --- renders.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renders.py b/renders.py index 92e260a..3d31815 100644 --- a/renders.py +++ b/renders.py @@ -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)