diff options
author | Florent Le Coz <louiz@louiz.org> | 2014-10-11 21:04:28 +0200 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2014-10-11 21:04:28 +0200 |
commit | 4a8fe56470245796e76ccd37aa9a5ea07ebb3440 (patch) | |
tree | 122881b1e178bf9f2705fb10f2647c3e9b6baa57 | |
parent | 7c3e61950d902441dfb86de0cdebbc4ff38033a3 (diff) | |
download | slixmpp-4a8fe56470245796e76ccd37aa9a5ea07ebb3440.tar.gz slixmpp-4a8fe56470245796e76ccd37aa9a5ea07ebb3440.tar.bz2 slixmpp-4a8fe56470245796e76ccd37aa9a5ea07ebb3440.tar.xz slixmpp-4a8fe56470245796e76ccd37aa9a5ea07ebb3440.zip |
Something something get_stanza_values
Fix something that was broken by Link Mauve
-rw-r--r-- | slixmpp/xmlstream/stanzabase.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/slixmpp/xmlstream/stanzabase.py b/slixmpp/xmlstream/stanzabase.py index a9b991f4..82064c1d 100644 --- a/slixmpp/xmlstream/stanzabase.py +++ b/slixmpp/xmlstream/stanzabase.py @@ -1616,3 +1616,6 @@ class StanzaBase(ElementBase): #: Child stanzas are exposed as nested dictionaries. ElementBase.values = property(ElementBase._get_stanza_values, ElementBase._set_stanza_values) + +ElementBase.get_stanza_values = ElementBase._get_stanza_values +ElementBase.set_stanza_values = ElementBase._set_stanza_values |