Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/python-nbxmpp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hörist <philipp@hoerist.com>2019-04-14 13:19:59 +0300
committerPhilipp Hörist <philipp@hoerist.com>2019-04-14 13:20:33 +0300
commitd343e2be5b162607e08081c4378ca7895af4b1b1 (patch)
treed96cec6fd0f6b5acb8a1d9c9e24fc77de0a00b25 /nbxmpp/dispatcher.py
parent11dffacfefb7db839ab5bdd47749edc935089dfa (diff)
Add PGP Legacy (XEP-0027) module
Diffstat (limited to 'nbxmpp/dispatcher.py')
-rw-r--r--nbxmpp/dispatcher.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/nbxmpp/dispatcher.py b/nbxmpp/dispatcher.py
index a70ed01..f78a5bd 100644
--- a/nbxmpp/dispatcher.py
+++ b/nbxmpp/dispatcher.py
@@ -50,7 +50,7 @@ from nbxmpp.modules.nickname import Nickname
from nbxmpp.modules.delay import Delay
from nbxmpp.modules.muc import MUC
from nbxmpp.modules.idle import Idle
-from nbxmpp.modules.signed import Signed
+from nbxmpp.modules.pgplegacy import PGPLegacy
from nbxmpp.modules.vcard_avatar import VCardAvatar
from nbxmpp.modules.captcha import Captcha
from nbxmpp.modules.entity_caps import EntityCaps
@@ -187,7 +187,7 @@ class XMPPDispatcher(PlugIn):
self._modules['Delay'] = Delay(self._owner)
self._modules['Captcha'] = Captcha(self._owner)
self._modules['Idle'] = Idle(self._owner)
- self._modules['Signed'] = Signed(self._owner)
+ self._modules['PGPLegacy'] = PGPLegacy(self._owner)
self._modules['VCardAvatar'] = VCardAvatar(self._owner)
self._modules['EntityCaps'] = EntityCaps(self._owner)
self._modules['Blocking'] = Blocking(self._owner)