summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sleekxmpp/plugins/xep_0184/__init__.py2
-rw-r--r--sleekxmpp/plugins/xep_0184/reciept.py4
2 files changed, 4 insertions, 2 deletions
diff --git a/sleekxmpp/plugins/xep_0184/__init__.py b/sleekxmpp/plugins/xep_0184/__init__.py
index 15670562..e401eb76 100644
--- a/sleekxmpp/plugins/xep_0184/__init__.py
+++ b/sleekxmpp/plugins/xep_0184/__init__.py
@@ -6,5 +6,5 @@
See the file LICENSE for copying permission.
"""
-from sleekxmpp.plugins.xep_0184.reciept import xep_0184
from sleekxmpp.plugins.xep_0184.stanza import Request, Received
+from sleekxmpp.plugins.xep_0184.reciept import xep_0184
diff --git a/sleekxmpp/plugins/xep_0184/reciept.py b/sleekxmpp/plugins/xep_0184/reciept.py
index 36105fd4..0cbc833d 100644
--- a/sleekxmpp/plugins/xep_0184/reciept.py
+++ b/sleekxmpp/plugins/xep_0184/reciept.py
@@ -9,7 +9,7 @@
from sleekxmpp.stanza import Message
from sleekxmpp.xmlstream import register_stanza_plugin
from sleekxmpp.plugins.base import base_plugin
-from stanza import Request, Received
+from sleekxmpp.plugins.xep_0184 import stanza, Request, Received
class xep_0184(base_plugin):
@@ -20,6 +20,8 @@ class xep_0184(base_plugin):
def plugin_init(self):
self.xep = '0184'
self.description = 'Message Delivery Receipts'
+ self.stanza = stanza
+
register_stanza_plugin(Message, Request)
register_stanza_plugin(Message, Received)