diff options
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2015-08-08 15:42:05 +0100 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2015-08-08 17:34:06 +0200 |
commit | cf7a60705ea1004011f2f911b767ee1a862e014a (patch) | |
tree | 19e922fe36343beaaa4fc17329f0413808a1234e | |
parent | 349b05b9b730a10baec1f75dee2db2bd2f9d0924 (diff) | |
download | slixmpp-cf7a60705ea1004011f2f911b767ee1a862e014a.tar.gz slixmpp-cf7a60705ea1004011f2f911b767ee1a862e014a.tar.bz2 slixmpp-cf7a60705ea1004011f2f911b767ee1a862e014a.tar.xz slixmpp-cf7a60705ea1004011f2f911b767ee1a862e014a.zip |
Fix docstring of unsubscribe method in the PubSub plugin.
-rw-r--r-- | slixmpp/plugins/xep_0060/pubsub.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/slixmpp/plugins/xep_0060/pubsub.py b/slixmpp/plugins/xep_0060/pubsub.py index 26258bc9..8e12ae92 100644 --- a/slixmpp/plugins/xep_0060/pubsub.py +++ b/slixmpp/plugins/xep_0060/pubsub.py @@ -260,12 +260,12 @@ class XEP_0060(BasePlugin): Arguments: jid -- The pubsub service JID. - node -- The node to subscribe to. + node -- The node to unsubscribe from. subid -- The specific subscription, if multiple subscriptions exist for this JID/node combination. bare -- Indicates if the subscribee is a bare or full JID. Defaults to True for a bare JID. - subscribee -- The JID that is subscribing to the node. + subscribee -- The JID that is unsubscribing from the node. ifrom -- Specify the sender's JID. timeout -- The length of time (in seconds) to wait for a response before exiting the send call if blocking |