diff options
author | Lance Stout <lancestout@gmail.com> | 2013-01-16 16:26:19 -0800 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2013-01-16 16:26:19 -0800 |
commit | 6bac4741f6ca7d73c43ae0fcb138b07e71ed1352 (patch) | |
tree | eeb0254440560cb03f39ac3b9b6de9adb2a4111f /sleekxmpp | |
parent | ce977a78091189099b339363d4d856c443d29710 (diff) | |
download | slixmpp-6bac4741f6ca7d73c43ae0fcb138b07e71ed1352.tar.gz slixmpp-6bac4741f6ca7d73c43ae0fcb138b07e71ed1352.tar.bz2 slixmpp-6bac4741f6ca7d73c43ae0fcb138b07e71ed1352.tar.xz slixmpp-6bac4741f6ca7d73c43ae0fcb138b07e71ed1352.zip |
Fix setting autojoin in bookmarks.
Diffstat (limited to 'sleekxmpp')
-rw-r--r-- | sleekxmpp/plugins/xep_0048/stanza.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/plugins/xep_0048/stanza.py b/sleekxmpp/plugins/xep_0048/stanza.py index 2e30eb6a..21829392 100644 --- a/sleekxmpp/plugins/xep_0048/stanza.py +++ b/sleekxmpp/plugins/xep_0048/stanza.py @@ -50,7 +50,7 @@ class Conference(ElementBase): def set_autojoin(self, value): del self['autojoin'] if value in ('1', 'true', True): - self._set_sub_text('autojoin', 'true') + self._set_attr('autojoin', 'true') class URL(ElementBase): |