Fix XEP-0184 imports

This commit is contained in:
Lance Stout 2012-02-03 16:08:27 +01:00
parent 85dd005abc
commit d565e4be20
2 changed files with 4 additions and 2 deletions

View file

@ -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

View file

@ -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)