diff options
author | Lance Stout <lancestout@gmail.com> | 2012-07-23 21:48:19 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2012-07-23 21:48:19 -0700 |
commit | 01cc0e6defcb4d1999d9777a316ffeabef4b0c93 (patch) | |
tree | fd456ba00bbb1dcf472669287ca0c5a80aabad53 | |
parent | d571d691a7cb1f923baa82db75eb5e82845365be (diff) | |
download | slixmpp-01cc0e6defcb4d1999d9777a316ffeabef4b0c93.tar.gz slixmpp-01cc0e6defcb4d1999d9777a316ffeabef4b0c93.tar.bz2 slixmpp-01cc0e6defcb4d1999d9777a316ffeabef4b0c93.tar.xz slixmpp-01cc0e6defcb4d1999d9777a316ffeabef4b0c93.zip |
Add 'by' attribute for error stanzas.
-rw-r--r-- | sleekxmpp/stanza/error.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/stanza/error.py b/sleekxmpp/stanza/error.py index 60bc65bc..56558ba8 100644 --- a/sleekxmpp/stanza/error.py +++ b/sleekxmpp/stanza/error.py @@ -52,7 +52,7 @@ class Error(ElementBase): name = 'error' plugin_attrib = 'error' interfaces = set(('code', 'condition', 'text', 'type', - 'gone', 'redirect')) + 'gone', 'redirect', 'by')) sub_interfaces = set(('text',)) plugin_attrib_map = {} plugin_tag_map = {} |