From 1a2bea663779df2a22750ecb232593ad3ec19cb5 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Fri, 15 Sep 2006 16:08:36 +0000 Subject: [PATCH] [sgala] fix wrong tag name. See #316 --- src/common/xmpp/protocol.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/xmpp/protocol.py b/src/common/xmpp/protocol.py index 1886c8392..b9d2ad9ff 100644 --- a/src/common/xmpp/protocol.py +++ b/src/common/xmpp/protocol.py @@ -399,7 +399,7 @@ class Message(Protocol): return self.getTagData('body') def getXHTML(self): """ Returns serialized xhtml-im body text of the message. """ - xhtml = self.getTag('xhtml') + xhtml = self.getTag('html') return str(xhtml.getTag('body')) def getSubject(self): """ Returns subject of the message. """