summaryrefslogtreecommitdiff
path: root/slixmpp/plugins/xep_0222.py
diff options
context:
space:
mode:
Diffstat (limited to 'slixmpp/plugins/xep_0222.py')
-rw-r--r--slixmpp/plugins/xep_0222.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/slixmpp/plugins/xep_0222.py b/slixmpp/plugins/xep_0222.py
index 059f4c85..81daed38 100644
--- a/slixmpp/plugins/xep_0222.py
+++ b/slixmpp/plugins/xep_0222.py
@@ -23,12 +23,12 @@ class XEP_0222(BasePlugin):
name = 'xep_0222'
description = 'XEP-0222: Persistent Storage of Public Data via PubSub'
- dependencies = set(['xep_0163', 'xep_0060', 'xep_0004'])
+ dependencies = {'xep_0163', 'xep_0060', 'xep_0004'}
profile = {'pubsub#persist_items': True,
'pubsub#send_last_published_item': 'never'}
- def configure(self, node):
+ def configure(self, node, ifrom=None, callback=None, timeout=None):
"""
Update a node's configuration to match the public storage profile.
"""