summaryrefslogtreecommitdiff
path: root/sleekxmpp/plugins/xep_0060/stanza/pubsub.py
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2011-09-01 09:27:10 -0700
committerLance Stout <lancestout@gmail.com>2011-09-01 09:27:10 -0700
commit002257b8208e343661a68710a3ee936067bfdba0 (patch)
treed8fb649f623e2020dcd339ee94763dd3f86fb259 /sleekxmpp/plugins/xep_0060/stanza/pubsub.py
parent0af35c2224889a06e5ac25028ee5b489106d201b (diff)
downloadslixmpp-002257b8208e343661a68710a3ee936067bfdba0.tar.gz
slixmpp-002257b8208e343661a68710a3ee936067bfdba0.tar.bz2
slixmpp-002257b8208e343661a68710a3ee936067bfdba0.tar.xz
slixmpp-002257b8208e343661a68710a3ee936067bfdba0.zip
Add tests for retrieving pubsub items.
Diffstat (limited to 'sleekxmpp/plugins/xep_0060/stanza/pubsub.py')
-rw-r--r--sleekxmpp/plugins/xep_0060/stanza/pubsub.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/sleekxmpp/plugins/xep_0060/stanza/pubsub.py b/sleekxmpp/plugins/xep_0060/stanza/pubsub.py
index 9f3fbe22..d62fc661 100644
--- a/sleekxmpp/plugins/xep_0060/stanza/pubsub.py
+++ b/sleekxmpp/plugins/xep_0060/stanza/pubsub.py
@@ -113,6 +113,9 @@ class Items(ElementBase):
plugin_tag_map = {}
subitem = (Item,)
+ def set_max_items(self, value):
+ self._set_attr('max_items', str(value))
+
registerStanzaPlugin(Pubsub, Items)
class Create(ElementBase):