diff options
author | Lance Stout <lancestout@gmail.com> | 2013-02-08 09:09:07 -0800 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2013-02-08 09:09:07 -0800 |
commit | 75a792eb6f8df68d47db8014852425d9ee36d6a9 (patch) | |
tree | 13a3a92b78385cf451c5016c03ed16b484c489b2 /sleekxmpp | |
parent | 23f112602c35440ca7a43cfd1efb0d3e15220a02 (diff) | |
download | slixmpp-75a792eb6f8df68d47db8014852425d9ee36d6a9.tar.gz slixmpp-75a792eb6f8df68d47db8014852425d9ee36d6a9.tar.bz2 slixmpp-75a792eb6f8df68d47db8014852425d9ee36d6a9.tar.xz slixmpp-75a792eb6f8df68d47db8014852425d9ee36d6a9.zip |
Fix HTML-IM lang support.
Diffstat (limited to 'sleekxmpp')
-rw-r--r-- | sleekxmpp/plugins/xep_0071/stanza.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/plugins/xep_0071/stanza.py b/sleekxmpp/plugins/xep_0071/stanza.py index a5cedda3..ce91c552 100644 --- a/sleekxmpp/plugins/xep_0071/stanza.py +++ b/sleekxmpp/plugins/xep_0071/stanza.py @@ -70,7 +70,7 @@ class XHTML_IM(ElementBase): return ''.join(result) return '' - def del_body(self, lang): + def del_body(self, lang=None): if lang is None: lang = self.get_lang() bodies = self.xml.findall('{%s}body' % XHTML_NS) |