diff options
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2016-10-27 06:22:50 +0100 |
---|---|---|
committer | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2016-10-27 06:22:50 +0100 |
commit | a4d3a4a25ea37ae61e1a3db5c7120aa38e72ffb1 (patch) | |
tree | a51e4718ac749d20db828b46054eea8c6cfaaa0c | |
parent | 58bd07628b69737220d89f27c930e381c597e61b (diff) | |
download | slixmpp-a4d3a4a25ea37ae61e1a3db5c7120aa38e72ffb1.tar.gz slixmpp-a4d3a4a25ea37ae61e1a3db5c7120aa38e72ffb1.tar.bz2 slixmpp-a4d3a4a25ea37ae61e1a3db5c7120aa38e72ffb1.tar.xz slixmpp-a4d3a4a25ea37ae61e1a3db5c7120aa38e72ffb1.zip |
XEP-0313: Add missing setter argument.
-rw-r--r-- | slixmpp/plugins/xep_0313/stanza.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/slixmpp/plugins/xep_0313/stanza.py b/slixmpp/plugins/xep_0313/stanza.py index a10ddf9b..3075c48e 100644 --- a/slixmpp/plugins/xep_0313/stanza.py +++ b/slixmpp/plugins/xep_0313/stanza.py @@ -135,5 +135,5 @@ class Archived(ElementBase): def get_by(self): return JID(self._get_attr('by')) - def set_by(self): + def set_by(self, value): return self._set_attr('by', str(value)) |