From 022519d23c0026c51f49cff2b2599e32684b3b4d Mon Sep 17 00:00:00 2001 From: "bit4bit@riseup.net" Date: Sat, 30 May 2020 02:52:03 +0000 Subject: [PATCH] facho/facho.py (LXMLBuilter.tostring): pretty_print se hace False para continuar validacion de pruebas FossilOrigin-Name: 14ff63e75c7b48ade507eb6e86971b5fda3074156a6355c9e9ab4910e8e88b45 --- facho/facho.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/facho/facho.py b/facho/facho.py index 750ffc6..cce1a80 100644 --- a/facho/facho.py +++ b/facho/facho.py @@ -99,7 +99,7 @@ class LXMLBuilder: elem.attrib[key] = value def tostring(self, elem, **attrs): - attrs['pretty_print'] = attrs.pop('pretty_print', True) + attrs['pretty_print'] = attrs.pop('pretty_print', False) attrs['encoding'] = attrs.pop('encoding', 'UTF-8') return tostring(elem, **attrs).decode('utf-8')