diff options
author | Lance Stout <lancestout@gmail.com> | 2012-03-12 19:21:54 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2012-03-12 19:32:20 -0700 |
commit | 32d6f856498dadaa0d7b1e01c9c83bd820d8767b (patch) | |
tree | 6f3eb68804d5c37c11f0b1dfc6b55f52d7be17e6 /sleekxmpp/plugins/xep_0118/__init__.py | |
parent | a2b47e57493fbd399df371c3feac7aa54f928f98 (diff) | |
download | slixmpp-32d6f856498dadaa0d7b1e01c9c83bd820d8767b.tar.gz slixmpp-32d6f856498dadaa0d7b1e01c9c83bd820d8767b.tar.bz2 slixmpp-32d6f856498dadaa0d7b1e01c9c83bd820d8767b.tar.xz slixmpp-32d6f856498dadaa0d7b1e01c9c83bd820d8767b.zip |
Move XEP-0118 to the new system.
Diffstat (limited to 'sleekxmpp/plugins/xep_0118/__init__.py')
-rw-r--r-- | sleekxmpp/plugins/xep_0118/__init__.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sleekxmpp/plugins/xep_0118/__init__.py b/sleekxmpp/plugins/xep_0118/__init__.py index f8560211..565f7844 100644 --- a/sleekxmpp/plugins/xep_0118/__init__.py +++ b/sleekxmpp/plugins/xep_0118/__init__.py @@ -6,6 +6,11 @@ See the file LICENSE for copying permission. """ +from sleekxmpp.plugins.base import register_plugin + from sleekxmpp.plugins.xep_0118 import stanza from sleekxmpp.plugins.xep_0118.stanza import UserTune -from sleekxmpp.plugins.xep_0118.user_tune import xep_0118 +from sleekxmpp.plugins.xep_0118.user_tune import XEP_0118 + + +register_plugin(XEP_0118) |