diff options
author | Nathan Fritz <fritzy@netflint.net> | 2010-01-08 05:26:37 +0000 |
---|---|---|
committer | Nathan Fritz <fritzy@netflint.net> | 2010-01-08 05:26:37 +0000 |
commit | 0af468b435a3c24792f8d70ef802193ff08f26af (patch) | |
tree | c83ab0523102cd9baad557c2aa3b4eff6a2c645f /sleekxmpp/xmlstream/stanzabase.py | |
parent | 8e3168e145da563cc0cca9762ff0c78b65425b73 (diff) | |
download | slixmpp-0af468b435a3c24792f8d70ef802193ff08f26af.tar.gz slixmpp-0af468b435a3c24792f8d70ef802193ff08f26af.tar.bz2 slixmpp-0af468b435a3c24792f8d70ef802193ff08f26af.tar.xz slixmpp-0af468b435a3c24792f8d70ef802193ff08f26af.zip |
* fixed stanza.keys()
Diffstat (limited to 'sleekxmpp/xmlstream/stanzabase.py')
-rw-r--r-- | sleekxmpp/xmlstream/stanzabase.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sleekxmpp/xmlstream/stanzabase.py b/sleekxmpp/xmlstream/stanzabase.py index 77244fb7..d4c1118f 100644 --- a/sleekxmpp/xmlstream/stanzabase.py +++ b/sleekxmpp/xmlstream/stanzabase.py @@ -77,6 +77,7 @@ class ElementBase(object): out += [x for x in self.plugins] if self.iterables: out.append('substanzas') + return tuple(out) def find(self, item): return self.iterables.find(item) |