diff options
author | Lance Stout <lancestout@gmail.com> | 2012-03-11 16:13:19 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2012-03-11 16:13:19 -0700 |
commit | 5f4b528e6bdc238988b02b9a7d4ef55077773e76 (patch) | |
tree | e04edf2275485cdbf53ac520b673abbc971b59b2 /sleekxmpp/plugins/xep_0107 | |
parent | f759b0ada1e33e2ebde5229f9bf98a6783652ee8 (diff) | |
download | slixmpp-5f4b528e6bdc238988b02b9a7d4ef55077773e76.tar.gz slixmpp-5f4b528e6bdc238988b02b9a7d4ef55077773e76.tar.bz2 slixmpp-5f4b528e6bdc238988b02b9a7d4ef55077773e76.tar.xz slixmpp-5f4b528e6bdc238988b02b9a7d4ef55077773e76.zip |
Ensure that result stanzas are returned, as expected.
Diffstat (limited to 'sleekxmpp/plugins/xep_0107')
-rw-r--r-- | sleekxmpp/plugins/xep_0107/user_mood.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sleekxmpp/plugins/xep_0107/user_mood.py b/sleekxmpp/plugins/xep_0107/user_mood.py index 534b10a6..37749b4b 100644 --- a/sleekxmpp/plugins/xep_0107/user_mood.py +++ b/sleekxmpp/plugins/xep_0107/user_mood.py @@ -63,7 +63,7 @@ class xep_0107(base_plugin): mood = UserMood() mood['value'] = value mood['text'] = text - self.xmpp['xep_0163'].publish(mood, + return self.xmpp['xep_0163'].publish(mood, node=UserMood.namespace, options=options, ifrom=ifrom, @@ -86,7 +86,7 @@ class xep_0107(base_plugin): be executed when a reply stanza is received. """ mood = UserMood() - self.xmpp['xep_0163'].publish(mood, + return self.xmpp['xep_0163'].publish(mood, node=UserMood.namespace, ifrom=ifrom, block=block, |