diff options
author | Lance Stout <lancestout@gmail.com> | 2011-03-18 17:30:29 -0400 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2011-03-18 17:30:29 -0400 |
commit | 450c31334044655053b67ff984cbe4d57b445c44 (patch) | |
tree | 958205f24250b0ba0900ccdd1019afc20befbdf0 /sleekxmpp | |
parent | 996ca52471931ccb3ac5a0f661e52fdc400db64b (diff) | |
download | slixmpp-450c31334044655053b67ff984cbe4d57b445c44.tar.gz slixmpp-450c31334044655053b67ff984cbe4d57b445c44.tar.bz2 slixmpp-450c31334044655053b67ff984cbe4d57b445c44.tar.xz slixmpp-450c31334044655053b67ff984cbe4d57b445c44.zip |
Fix error in stanza handler registration in XEP-0092.
Diffstat (limited to 'sleekxmpp')
-rw-r--r-- | sleekxmpp/plugins/xep_0092/version.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/plugins/xep_0092/version.py b/sleekxmpp/plugins/xep_0092/version.py index 46bb27f7..1ca6c15e 100644 --- a/sleekxmpp/plugins/xep_0092/version.py +++ b/sleekxmpp/plugins/xep_0092/version.py @@ -42,7 +42,7 @@ class xep_0092(base_plugin): self.xmpp.register_handler( Callback('Software Version', - StanzaPath('iq@=get/software_version'), + StanzaPath('iq@type=get/software_version'), self._handle_version)) register_stanza_plugin(Iq, Version) |