summaryrefslogtreecommitdiff
path: root/slixmpp/stanza/message.py
diff options
context:
space:
mode:
Diffstat (limited to 'slixmpp/stanza/message.py')
-rw-r--r--slixmpp/stanza/message.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/slixmpp/stanza/message.py b/slixmpp/stanza/message.py
index cbb170fa..f5813eaf 100644
--- a/slixmpp/stanza/message.py
+++ b/slixmpp/stanza/message.py
@@ -47,11 +47,11 @@ class Message(RootStanza):
name = 'message'
namespace = 'jabber:client'
plugin_attrib = name
- interfaces = set(['type', 'to', 'from', 'id', 'body', 'subject',
- 'thread', 'parent_thread', 'mucroom', 'mucnick'])
- sub_interfaces = set(['body', 'subject', 'thread'])
+ interfaces = {'type', 'to', 'from', 'id', 'body', 'subject', 'thread',
+ 'parent_thread', 'mucroom', 'mucnick'}
+ sub_interfaces = {'body', 'subject', 'thread'}
lang_interfaces = sub_interfaces
- types = set(['normal', 'chat', 'headline', 'error', 'groupchat'])
+ types = {'normal', 'chat', 'headline', 'error', 'groupchat'}
def __init__(self, *args, **kwargs):
"""