From e0dd9c3618e92643ec323b162187e001673a59b7 Mon Sep 17 00:00:00 2001 From: Lance Stout Date: Tue, 3 Apr 2012 10:58:31 -0700 Subject: Simplify registering API handler defaults. --- sleekxmpp/plugins/xep_0030/disco.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'sleekxmpp/plugins/xep_0030/disco.py') diff --git a/sleekxmpp/plugins/xep_0030/disco.py b/sleekxmpp/plugins/xep_0030/disco.py index 76824e1c..6f5b48d3 100644 --- a/sleekxmpp/plugins/xep_0030/disco.py +++ b/sleekxmpp/plugins/xep_0030/disco.py @@ -119,8 +119,7 @@ class XEP_0030(BasePlugin): 'get_cached_info', 'supports', 'has_identity'] for op in self._disco_ops: - self.api.register(getattr(self.static, op), op) - self.api.register_default(getattr(self.static, op), op) + self.api.register(getattr(self.static, op), op, default=True) def _add_disco_op(self, op, default_handler): self.api.register(default_handler, op) -- cgit v1.2.3