diff options
author | Lance Stout <lancestout@gmail.com> | 2012-03-11 23:01:45 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2012-03-12 19:32:19 -0700 |
commit | 2f677c98f8d4ba5ab7e358ba751d5d376dba5484 (patch) | |
tree | 9c19e60d85a449b2199b55e68758b08f20861146 /sleekxmpp/plugins/xep_0086/__init__.py | |
parent | 3fda053606c3e36943aab638359c59e33c878635 (diff) | |
download | slixmpp-2f677c98f8d4ba5ab7e358ba751d5d376dba5484.tar.gz slixmpp-2f677c98f8d4ba5ab7e358ba751d5d376dba5484.tar.bz2 slixmpp-2f677c98f8d4ba5ab7e358ba751d5d376dba5484.tar.xz slixmpp-2f677c98f8d4ba5ab7e358ba751d5d376dba5484.zip |
Move XEP-0086 to new system.
Diffstat (limited to 'sleekxmpp/plugins/xep_0086/__init__.py')
-rw-r--r-- | sleekxmpp/plugins/xep_0086/__init__.py | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/sleekxmpp/plugins/xep_0086/__init__.py b/sleekxmpp/plugins/xep_0086/__init__.py index b021e2b5..94600e85 100644 --- a/sleekxmpp/plugins/xep_0086/__init__.py +++ b/sleekxmpp/plugins/xep_0086/__init__.py @@ -6,5 +6,14 @@ See the file LICENSE for copying permission. """ +from sleekxmpp.plugins.base import register_plugin + from sleekxmpp.plugins.xep_0086.stanza import LegacyError -from sleekxmpp.plugins.xep_0086.legacy_error import xep_0086 +from sleekxmpp.plugins.xep_0086.legacy_error import XEP_0086 + + +register_plugin(XEP_0086) + + +# Retain some backwards compatibility +xep_0086 = XEP_0086 |