summaryrefslogtreecommitdiff
path: root/sleekxmpp/plugins/xep_0270.py
diff options
context:
space:
mode:
Diffstat (limited to 'sleekxmpp/plugins/xep_0270.py')
-rw-r--r--sleekxmpp/plugins/xep_0270.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/sleekxmpp/plugins/xep_0270.py b/sleekxmpp/plugins/xep_0270.py
index 41ccd73b..eadd45ad 100644
--- a/sleekxmpp/plugins/xep_0270.py
+++ b/sleekxmpp/plugins/xep_0270.py
@@ -6,7 +6,7 @@
See the file LICENSE for copying permission.
"""
-from sleekxmpp.plugins import BasePlugin
+from sleekxmpp.plugins import BasePlugin, register_plugin
class XEP_0270(BasePlugin):
@@ -15,3 +15,6 @@ class XEP_0270(BasePlugin):
description = 'XEP-0270: XMPP Compliance Suites 2010'
dependencies = set(['xep_0030', 'xep_0115', 'xep_0054',
'xep_0163', 'xep_0045', 'xep_0085'])
+
+
+register_plugin(XEP_0270)