diff options
author | Lance Stout <lancestout@gmail.com> | 2013-09-12 10:32:19 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2013-09-12 10:32:19 -0700 |
commit | 19b24b276d2d4591f5ee852d98966518d46ce7d3 (patch) | |
tree | cfc57cd0383deb10a776d6f5bb0d91696c922b27 /sleekxmpp/plugins/xep_0313/stanza.py | |
parent | 23750357e21ce1e22445b2e702bdd4efb77f2369 (diff) | |
download | slixmpp-19b24b276d2d4591f5ee852d98966518d46ce7d3.tar.gz slixmpp-19b24b276d2d4591f5ee852d98966518d46ce7d3.tar.bz2 slixmpp-19b24b276d2d4591f5ee852d98966518d46ce7d3.tar.xz slixmpp-19b24b276d2d4591f5ee852d98966518d46ce7d3.zip |
Update MAM to use latest carbons.
Diffstat (limited to 'sleekxmpp/plugins/xep_0313/stanza.py')
-rw-r--r-- | sleekxmpp/plugins/xep_0313/stanza.py | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/sleekxmpp/plugins/xep_0313/stanza.py b/sleekxmpp/plugins/xep_0313/stanza.py index a33c2e35..476cbbfb 100644 --- a/sleekxmpp/plugins/xep_0313/stanza.py +++ b/sleekxmpp/plugins/xep_0313/stanza.py @@ -122,10 +122,4 @@ class Result(ElementBase): name = 'result' namespace = 'urn:xmpp:mam:tmp' plugin_attrib = 'mam_result' - interfaces = set(['forwarded', 'queryid', 'id']) - - def get_forwarded(self): - return self.parent()['forwarded'] - - def del_forwarded(self): - del self.parent()['forwarded'] + interfaces = set(['queryid', 'id']) |