From a29ce4b54774de050f352606d06bb111ecff4a65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maxime=20=E2=80=9Cpep=E2=80=9D=20Buquet?= Date: Wed, 27 May 2020 23:45:41 +0200 Subject: XEP-0421: Add shorthand to namespace MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maxime “pep” Buquet --- slixmpp/plugins/xep_0421/occupant_id.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/slixmpp/plugins/xep_0421/occupant_id.py b/slixmpp/plugins/xep_0421/occupant_id.py index ff7fcda5..116bf2d9 100644 --- a/slixmpp/plugins/xep_0421/occupant_id.py +++ b/slixmpp/plugins/xep_0421/occupant_id.py @@ -20,6 +20,7 @@ class XEP_0421(BasePlugin): description = 'Anonymous unique occupant identifiers for MUCs' dependencies = {'xep_0030', 'xep_0045'} stanza = stanza + namespace = stanza.NS def plugin_init(self) -> None: # XXX: This should be MucMessage. Someday.. @@ -27,4 +28,4 @@ class XEP_0421(BasePlugin): async def has_feature(self, jid: JID) -> bool: info = await self.xmpp['xep_0030'].get_info(jid) - return self.stanza.NS in info.get_features() + return self.namespace in info.get_features() -- cgit v1.2.3