diff options
author | Lance Stout <lancestout@gmail.com> | 2010-07-28 13:14:41 -0400 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2010-07-28 13:14:41 -0400 |
commit | bd92ef6acfd9b1ecd390f08b28f1a3f4e7ec69a9 (patch) | |
tree | 1b1a1db7d76cc34bc02ffea6b5d05f49964f2d73 /sleekxmpp/stanza/__init__.py | |
parent | aa02ecd1544c5fe7f5b3b82aa3b79da0e30da6e3 (diff) | |
download | slixmpp-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__.py | 7 |
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 |