diff options
author | Lance Stout <lancestout@gmail.com> | 2011-09-02 11:52:56 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2011-09-02 11:52:56 -0700 |
commit | 1765271f84793efb54eb710557afc1ae2f201926 (patch) | |
tree | 4f1c881e4c800266b6d84db8b290781c276cf658 | |
parent | 0ec79f8dc36bc0ae706def426f4fb540cf13d14f (diff) | |
download | slixmpp-1765271f84793efb54eb710557afc1ae2f201926.tar.gz slixmpp-1765271f84793efb54eb710557afc1ae2f201926.tar.bz2 slixmpp-1765271f84793efb54eb710557afc1ae2f201926.tar.xz slixmpp-1765271f84793efb54eb710557afc1ae2f201926.zip |
Make get_node_config block by default.
-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 ec3fb9bb..5e57004f 100644 --- a/sleekxmpp/plugins/xep_0060/pubsub.py +++ b/sleekxmpp/plugins/xep_0060/pubsub.py @@ -202,7 +202,7 @@ class xep_0060(base_plugin): iq['pubsub']['options'].append(options) return iq.send(block=block, callback=callback, timeout=timeout) - def get_node_config(self, jid, node=None, ifrom=None, block=None, + def get_node_config(self, jid, node=None, ifrom=None, block=True, callback=None, timeout=None): """ Retrieve the configuration for a node, or the pubsub service's |