summaryrefslogtreecommitdiff
path: root/slixmpp/plugins/xep_0332/http.py
diff options
context:
space:
mode:
Diffstat (limited to 'slixmpp/plugins/xep_0332/http.py')
-rw-r--r--slixmpp/plugins/xep_0332/http.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/slixmpp/plugins/xep_0332/http.py b/slixmpp/plugins/xep_0332/http.py
index 7ad14dc8..bebb0e69 100644
--- a/slixmpp/plugins/xep_0332/http.py
+++ b/slixmpp/plugins/xep_0332/http.py
@@ -36,11 +36,11 @@ class XEP_0332(BasePlugin):
#: xep_0047 not included.
#: xep_0001, 0137 and 0166 are missing
- dependencies = set(['xep_0030', 'xep_0131'])
+ dependencies = {'xep_0030', 'xep_0131'}
#: TODO: Do we really need to mention the supported_headers?!
default_config = {
- 'supported_headers': set([
+ 'supported_headers': {
'Content-Length', 'Transfer-Encoding', 'DateTime',
'Accept-Charset', 'Location', 'Content-ID', 'Description',
'Content-Language', 'Content-Transfer-Encoding', 'Timestamp',
@@ -48,7 +48,7 @@ class XEP_0332(BasePlugin):
'WWW-Authenticate', 'Accept-Encoding', 'Server', 'Error-Info',
'Identifier', 'Content-Location', 'Content-Encoding', 'Distribute',
'Accept', 'Proxy-Authenticate', 'ETag', 'Expect', 'Content-Type'
- ])
+ }
}
def plugin_init(self):