Fix XEP-0184 imports
This commit is contained in:
@@ -6,5 +6,5 @@
|
|||||||
See the file LICENSE for copying permission.
|
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.stanza import Request, Received
|
||||||
|
from sleekxmpp.plugins.xep_0184.reciept import xep_0184
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
from sleekxmpp.stanza import Message
|
from sleekxmpp.stanza import Message
|
||||||
from sleekxmpp.xmlstream import register_stanza_plugin
|
from sleekxmpp.xmlstream import register_stanza_plugin
|
||||||
from sleekxmpp.plugins.base import base_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):
|
class xep_0184(base_plugin):
|
||||||
@@ -20,6 +20,8 @@ class xep_0184(base_plugin):
|
|||||||
def plugin_init(self):
|
def plugin_init(self):
|
||||||
self.xep = '0184'
|
self.xep = '0184'
|
||||||
self.description = 'Message Delivery Receipts'
|
self.description = 'Message Delivery Receipts'
|
||||||
|
self.stanza = stanza
|
||||||
|
|
||||||
register_stanza_plugin(Message, Request)
|
register_stanza_plugin(Message, Request)
|
||||||
register_stanza_plugin(Message, Received)
|
register_stanza_plugin(Message, Received)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user