summaryrefslogtreecommitdiff
path: root/sleekxmpp/stanza/__init__.py
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2010-07-28 13:14:41 -0400
committerLance Stout <lancestout@gmail.com>2010-07-28 13:14:41 -0400
commitbd92ef6acfd9b1ecd390f08b28f1a3f4e7ec69a9 (patch)
tree1b1a1db7d76cc34bc02ffea6b5d05f49964f2d73 /sleekxmpp/stanza/__init__.py
parentaa02ecd1544c5fe7f5b3b82aa3b79da0e30da6e3 (diff)
downloadslixmpp-bd92ef6acfd9b1ecd390f08b28f1a3f4e7ec69a9.tar.gz
slixmpp-bd92ef6acfd9b1ecd390f08b28f1a3f4e7ec69a9.tar.bz2
slixmpp-bd92ef6acfd9b1ecd390f08b28f1a3f4e7ec69a9.tar.xz
slixmpp-bd92ef6acfd9b1ecd390f08b28f1a3f4e7ec69a9.zip
Updated RootStanza to use registerStanzaPlugin, and be PEP8 compliant.
Diffstat (limited to 'sleekxmpp/stanza/__init__.py')
-rw-r--r--sleekxmpp/stanza/__init__.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/sleekxmpp/stanza/__init__.py b/sleekxmpp/stanza/__init__.py
index b8fca228..8302c43d 100644
--- a/sleekxmpp/stanza/__init__.py
+++ b/sleekxmpp/stanza/__init__.py
@@ -5,4 +5,9 @@
See the file LICENSE for copying permission.
"""
-__all__ = ['presence']
+
+
+from sleekxmpp.stanza.error import Error
+from sleekxmpp.stanza.iq import Iq
+from sleekxmpp.stanza.message import Message
+from sleekxmpp.stanza.presence import Presence