diff options
author | Lance Stout <lancestout@gmail.com> | 2012-03-12 19:06:54 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2012-03-12 19:32:20 -0700 |
commit | 67972c5e8496864e2297f5820e4034734996479b (patch) | |
tree | 9d2856762656ef3ed695775812523efbdd8256f3 /sleekxmpp/plugins/xep_0080/__init__.py | |
parent | 3467ac18ccba41765f6151b2fa59aea97d2f4854 (diff) | |
download | slixmpp-67972c5e8496864e2297f5820e4034734996479b.tar.gz slixmpp-67972c5e8496864e2297f5820e4034734996479b.tar.bz2 slixmpp-67972c5e8496864e2297f5820e4034734996479b.tar.xz slixmpp-67972c5e8496864e2297f5820e4034734996479b.zip |
Move XEP-0080 to the new system.
Diffstat (limited to 'sleekxmpp/plugins/xep_0080/__init__.py')
-rw-r--r-- | sleekxmpp/plugins/xep_0080/__init__.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sleekxmpp/plugins/xep_0080/__init__.py b/sleekxmpp/plugins/xep_0080/__init__.py index 1e3fe4c8..cad23d22 100644 --- a/sleekxmpp/plugins/xep_0080/__init__.py +++ b/sleekxmpp/plugins/xep_0080/__init__.py @@ -6,5 +6,10 @@ See the file LICENSE for copying permission. """ +from sleekxmpp.plugins.base import register_plugin + from sleekxmpp.plugins.xep_0080.stanza import Geoloc -from sleekxmpp.plugins.xep_0080.geoloc import xep_0080 +from sleekxmpp.plugins.xep_0080.geoloc import XEP_0080 + + +register_plugin(XEP_0080) |