diff options
author | Nathan Fritz <fritzy@netflint.net> | 2009-07-11 22:17:49 +0000 |
---|---|---|
committer | Nathan Fritz <fritzy@netflint.net> | 2009-07-11 22:17:49 +0000 |
commit | 9cbc29149f4a5437bc9f54f124895278b558b25d (patch) | |
tree | 3e98ef4662a56040f7745abb1141023747db56c3 /sleekxmpp/componentxmpp.py | |
parent | 7a15d14c939dbc9ecc9822c81da55bdb648dcbdb (diff) | |
download | slixmpp-9cbc29149f4a5437bc9f54f124895278b558b25d.tar.gz slixmpp-9cbc29149f4a5437bc9f54f124895278b558b25d.tar.bz2 slixmpp-9cbc29149f4a5437bc9f54f124895278b558b25d.tar.xz slixmpp-9cbc29149f4a5437bc9f54f124895278b558b25d.zip |
fixed typo
Diffstat (limited to 'sleekxmpp/componentxmpp.py')
-rwxr-xr-x | sleekxmpp/componentxmpp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/componentxmpp.py b/sleekxmpp/componentxmpp.py index 33514859..28b58172 100755 --- a/sleekxmpp/componentxmpp.py +++ b/sleekxmpp/componentxmpp.py @@ -73,7 +73,7 @@ class ComponentXMPP(basexmpp, XMLStream): def incoming_filter(self, xmlobj): if xmlobj.tag.startswith('{jabber:client}'): xmlobj.tag = xmlobj.tag.replace('jabber:client', 'jabber:component:accept') - for child in xmlobj.children(): + for child in xmlobj.getchildren(): child = self.incoming_filter(child) return xmlobj |