summaryrefslogtreecommitdiff
path: root/sleekxmpp/plugins/xep_0172/__init__.py
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2012-03-12 19:30:49 -0700
committerLance Stout <lancestout@gmail.com>2012-03-12 19:32:20 -0700
commit5a2cbbb731eb3efd15f095789eefed5a4b05b532 (patch)
tree4f0c913c24f94270339618a254c27e068254dd32 /sleekxmpp/plugins/xep_0172/__init__.py
parent32d6f856498dadaa0d7b1e01c9c83bd820d8767b (diff)
downloadslixmpp-5a2cbbb731eb3efd15f095789eefed5a4b05b532.tar.gz
slixmpp-5a2cbbb731eb3efd15f095789eefed5a4b05b532.tar.bz2
slixmpp-5a2cbbb731eb3efd15f095789eefed5a4b05b532.tar.xz
slixmpp-5a2cbbb731eb3efd15f095789eefed5a4b05b532.zip
Move XEP-0172 to new system.
Diffstat (limited to 'sleekxmpp/plugins/xep_0172/__init__.py')
-rw-r--r--sleekxmpp/plugins/xep_0172/__init__.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/sleekxmpp/plugins/xep_0172/__init__.py b/sleekxmpp/plugins/xep_0172/__init__.py
index 24ae57e9..aa7b9f72 100644
--- a/sleekxmpp/plugins/xep_0172/__init__.py
+++ b/sleekxmpp/plugins/xep_0172/__init__.py
@@ -6,6 +6,11 @@
See the file LICENSE for copying permission.
"""
+from sleekxmpp.plugins.base import register_plugin
+
from sleekxmpp.plugins.xep_0172 import stanza
from sleekxmpp.plugins.xep_0172.stanza import UserNick
-from sleekxmpp.plugins.xep_0172.user_nick import xep_0172
+from sleekxmpp.plugins.xep_0172.user_nick import XEP_0172
+
+
+register_plugin(XEP_0172)