From 0029f4708276699ec656280b5731278e16c2add2 Mon Sep 17 00:00:00 2001 From: mathieui Date: Wed, 4 May 2011 22:25:26 +0200 Subject: Fix python 3.1 compat --- src/xhtml.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/xhtml.py') diff --git a/src/xhtml.py b/src/xhtml.py index fee5a118..954db374 100644 --- a/src/xhtml.py +++ b/src/xhtml.py @@ -27,6 +27,7 @@ import re import subprocess from sleekxmpp.xmlstream import ET from xml.etree.ElementTree import ElementTree +from sys import version_info from config import config import logging @@ -82,8 +83,11 @@ def convert_links_to_plaintext(text): parent.text += link_text parent.remove(child) previous_child = child + if version_info.minor <= 1: + return ET.tostring(xml.getroot()) return ET.tostring(xml.getroot(), encoding=str) + def clean_text(string): """ Remove all \x19 from the string -- cgit v1.2.3