diff options
author | mathieui <mathieui@mathieui.net> | 2016-10-27 00:11:27 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2016-10-27 00:11:27 +0200 |
commit | d23d8f901ef9d8cea7fae7e2a5539de14f31f7b9 (patch) | |
tree | a2bb9dcf9619caf5f62ae014d127247651a88f53 | |
parent | 391f12eeab7ee624298fb7f6a15e3cb6582975e6 (diff) | |
download | slixmpp-d23d8f901ef9d8cea7fae7e2a5539de14f31f7b9.tar.gz slixmpp-d23d8f901ef9d8cea7fae7e2a5539de14f31f7b9.tar.bz2 slixmpp-d23d8f901ef9d8cea7fae7e2a5539de14f31f7b9.tar.xz slixmpp-d23d8f901ef9d8cea7fae7e2a5539de14f31f7b9.zip |
Fix a traceback on XEP-0221 del uri['value']
(typo)
-rw-r--r-- | slixmpp/plugins/xep_0221/stanza.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/slixmpp/plugins/xep_0221/stanza.py b/slixmpp/plugins/xep_0221/stanza.py index 4dad0eef..097f03c4 100644 --- a/slixmpp/plugins/xep_0221/stanza.py +++ b/slixmpp/plugins/xep_0221/stanza.py @@ -36,7 +36,7 @@ class URI(ElementBase): self.xml.text = value def del_value(self): - sel.xml.text = '' + self.xml.text = '' register_stanza_plugin(Media, URI, iterable=True) |