xep_0384: don't register the plugin twice

We're already calling `register_plugin` in __init__.py

Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
Maxime “pep” Buquet 2018-12-01 21:42:30 +00:00
parent b6fb1ec015
commit bc97de440a

View file

@ -17,7 +17,7 @@ import asyncio
from slixmpp.plugins.xep_0384.stanza import OMEMO_BASE_NS
from slixmpp.plugins.xep_0384.stanza import OMEMO_DEVICES_NS, OMEMO_BUNDLES_NS
from slixmpp.plugins.xep_0384.stanza import Bundle, Devices, Device, Encrypted, Key, PreKeyPublic
from slixmpp.plugins.base import BasePlugin, register_plugin
from slixmpp.plugins.base import BasePlugin
from slixmpp.exceptions import IqError
from slixmpp.stanza import Message, Iq
from slixmpp.jid import JID
@ -388,5 +388,3 @@ class XEP_0384(BasePlugin):
always_trust=True,
)
return self._generate_encrypted_payload(encrypted)
register_plugin(XEP_0384)