Fix get_items default behaviour.

This commit is contained in:
Lance Stout 2011-02-09 08:58:00 -05:00
parent 30da68f47b
commit 145f577bde

View file

@ -318,7 +318,7 @@ class xep_0030(base_plugin):
return self.xmpp['xep_0059'].iterate(iq, 'disco_items')
else:
return iq.send(timeout=kwargs.get('timeout', None),
block=kwargs.get('block', None),
block=kwargs.get('block', True),
callback=kwargs.get('callback', None))
def set_items(self, jid=None, node=None, **kwargs):