diff options
author | Lance Stout <lancestout@gmail.com> | 2010-12-15 19:22:21 -0500 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2010-12-15 19:22:21 -0500 |
commit | 1ebc7f4d4bef38261111f16af4946d77d584d293 (patch) | |
tree | 15567e82e6f511d9ee47648265d7f9580d216458 /sleekxmpp/plugins/xep_0030/disco.py | |
parent | 2c5b77ae2e7502cbb681e9449d09150a063ec7fd (diff) | |
download | slixmpp-1ebc7f4d4bef38261111f16af4946d77d584d293.tar.gz slixmpp-1ebc7f4d4bef38261111f16af4946d77d584d293.tar.bz2 slixmpp-1ebc7f4d4bef38261111f16af4946d77d584d293.tar.xz slixmpp-1ebc7f4d4bef38261111f16af4946d77d584d293.zip |
Implement a few more static node handlers.
Diffstat (limited to 'sleekxmpp/plugins/xep_0030/disco.py')
-rw-r--r-- | sleekxmpp/plugins/xep_0030/disco.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/plugins/xep_0030/disco.py b/sleekxmpp/plugins/xep_0030/disco.py index 783eddb3..ad3d0ae2 100644 --- a/sleekxmpp/plugins/xep_0030/disco.py +++ b/sleekxmpp/plugins/xep_0030/disco.py @@ -452,7 +452,7 @@ class xep_0030(base_plugin): """ self._run_node_handler('del_features', jid, node, kwargs) - def _run_node_handler(self, htype, jid, node, data=None): + def _run_node_handler(self, htype, jid, node, data={}): """ Execute the most specific node handler for the given JID/node combination. |