diff options
author | mathieui <mathieui@mathieui.net> | 2016-10-27 00:17:29 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2016-10-27 00:17:29 +0200 |
commit | 20c4ff823afff78159218ad1ec1d6338700f7eca (patch) | |
tree | a55fd7d30e73e7aff700ffe43bf4610b835d2b78 | |
parent | 8a7448a5a143472fda7487fbfa1a593deeb66215 (diff) | |
download | slixmpp-20c4ff823afff78159218ad1ec1d6338700f7eca.tar.gz slixmpp-20c4ff823afff78159218ad1ec1d6338700f7eca.tar.bz2 slixmpp-20c4ff823afff78159218ad1ec1d6338700f7eca.tar.xz slixmpp-20c4ff823afff78159218ad1ec1d6338700f7eca.zip |
Add missing JID import in XEP-0079 and 0258
-rw-r--r-- | slixmpp/plugins/xep_0079/stanza.py | 1 | ||||
-rw-r--r-- | slixmpp/plugins/xep_0258/stanza.py | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/slixmpp/plugins/xep_0079/stanza.py b/slixmpp/plugins/xep_0079/stanza.py index 27480fd6..f959f21b 100644 --- a/slixmpp/plugins/xep_0079/stanza.py +++ b/slixmpp/plugins/xep_0079/stanza.py @@ -8,6 +8,7 @@ from __future__ import unicode_literals +from slixmpp import JID from slixmpp.xmlstream import ElementBase, register_stanza_plugin diff --git a/slixmpp/plugins/xep_0258/stanza.py b/slixmpp/plugins/xep_0258/stanza.py index bc9718c9..c0c7080c 100644 --- a/slixmpp/plugins/xep_0258/stanza.py +++ b/slixmpp/plugins/xep_0258/stanza.py @@ -8,6 +8,7 @@ from base64 import b64encode, b64decode +from slixmpp import JID from slixmpp.util import bytes from slixmpp.xmlstream import ElementBase, ET, register_stanza_plugin |