From 18a4978456a33e6ea38de1e07b1aa43bcc10d45f Mon Sep 17 00:00:00 2001 From: mathieui Date: Mon, 23 Feb 2015 19:43:23 +0100 Subject: XEP-0258: wrap get_catalog() with coroutine_wrapper --- slixmpp/plugins/xep_0258/security_labels.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'slixmpp/plugins/xep_0258/security_labels.py') diff --git a/slixmpp/plugins/xep_0258/security_labels.py b/slixmpp/plugins/xep_0258/security_labels.py index 2fb048c7..56916147 100644 --- a/slixmpp/plugins/xep_0258/security_labels.py +++ b/slixmpp/plugins/xep_0258/security_labels.py @@ -9,6 +9,7 @@ import logging from slixmpp import Iq, Message +from slixmpp import coroutine_wrapper from slixmpp.plugins import BasePlugin from slixmpp.xmlstream import register_stanza_plugin from slixmpp.plugins.xep_0258 import stanza, SecurityLabel, Catalog @@ -34,11 +35,12 @@ class XEP_0258(BasePlugin): def session_bind(self, jid): self.xmpp['xep_0030'].add_feature(SecurityLabel.namespace) - def get_catalog(self, jid, ifrom=None, + @coroutine_wrapper + def get_catalog(self, jid, ifrom=None, coroutine=False, callback=None, timeout=None): iq = self.xmpp.Iq() iq['to'] = jid iq['from'] = ifrom iq['type'] = 'get' iq.enable('security_label_catalog') - return iq.send(callback=callback, timeout=timeout) + return iq.send(callback=callback, timeout=timeout, coroutine=coroutine) -- cgit v1.2.3