diff options
author | Nathan Fritz <fritzy@netflint.net> | 2011-08-30 22:44:34 -0700 |
---|---|---|
committer | Nathan Fritz <fritzy@netflint.net> | 2011-08-30 22:44:34 -0700 |
commit | 4699bdff6046e37d9fe4a8c1e29923e239126908 (patch) | |
tree | 16915bb496575272b1914b75a96c150165df66d5 /sleekxmpp | |
parent | 354641a3ce5a295ab67ba4c8bf7169d10a835f36 (diff) | |
parent | 13fdab01398ba69de42006064358624a8742b1f5 (diff) | |
download | slixmpp-4699bdff6046e37d9fe4a8c1e29923e239126908.tar.gz slixmpp-4699bdff6046e37d9fe4a8c1e29923e239126908.tar.bz2 slixmpp-4699bdff6046e37d9fe4a8c1e29923e239126908.tar.xz slixmpp-4699bdff6046e37d9fe4a8c1e29923e239126908.zip |
Merge branch 'develop' of github.com:fritzy/SleekXMPP into develop
Diffstat (limited to 'sleekxmpp')
-rw-r--r-- | sleekxmpp/plugins/xep_0060/pubsub.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/plugins/xep_0060/pubsub.py b/sleekxmpp/plugins/xep_0060/pubsub.py index 894ceffa..f9999f73 100644 --- a/sleekxmpp/plugins/xep_0060/pubsub.py +++ b/sleekxmpp/plugins/xep_0060/pubsub.py @@ -262,7 +262,7 @@ class xep_0060(base_plugin): callback -- Optional reference to a stream handler function. Will be executed when a reply stanza is received. """ - iq = self.xmpp.Iq(sto=jid, sfrom=ifrom, stype='get') + iq = self.xmpp.Iq(sto=jid, sfrom=ifrom, stype='set') iq['pubsub_owner']['delete']['node'] = node return iq.send(block=block, callback=callback, timeout=timeout) |