From 2e46a93215c535dcaba1282acb7424761cb6dfea Mon Sep 17 00:00:00 2001 From: mathieui Date: Sun, 7 Dec 2014 22:59:50 +0100 Subject: =?UTF-8?q?Don=E2=80=99t=20put=20newlines=20between=20xml=20stanza?= =?UTF-8?q?s=20in=20the=20xml=20tab?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/core/handlers.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/core/handlers.py') diff --git a/src/core/handlers.py b/src/core/handlers.py index 9ce50d42..6b613a93 100644 --- a/src/core/handlers.py +++ b/src/core/handlers.py @@ -1117,7 +1117,7 @@ def outgoing_stanza(self, stanza): if self.xml_tab: if PYGMENTS: xhtml_text = highlight('%s' % stanza, LEXER, FORMATTER) - poezio_colored = xhtml.xhtml_to_poezio_colors(xhtml_text, force=True) + poezio_colored = xhtml.xhtml_to_poezio_colors(xhtml_text, force=True).rstrip('\x19o').strip() else: poezio_colored = '%s' % stanza self.add_message_to_text_buffer(self.xml_buffer, poezio_colored, @@ -1140,7 +1140,7 @@ def incoming_stanza(self, stanza): if self.xml_tab: if PYGMENTS: xhtml_text = highlight('%s' % stanza, LEXER, FORMATTER) - poezio_colored = xhtml.xhtml_to_poezio_colors(xhtml_text, force=True) + poezio_colored = xhtml.xhtml_to_poezio_colors(xhtml_text, force=True).rstrip('\x19o').strip() else: poezio_colored = '%s' % stanza self.add_message_to_text_buffer(self.xml_buffer, poezio_colored, -- cgit v1.2.3