diff options
author | Lance Stout <lancestout@gmail.com> | 2012-06-19 09:47:31 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2012-06-19 09:47:31 -0700 |
commit | 7858d969d82eaaa7124b8d59a68c286f06cbf758 (patch) | |
tree | 63c6c988eea16da3d6c8dc9c42c357ed668171a8 /sleekxmpp/xmlstream/matcher/xmlmask.py | |
parent | 811955104968a055c651ea1fe97adc9f0ae61676 (diff) | |
download | slixmpp-7858d969d82eaaa7124b8d59a68c286f06cbf758.tar.gz slixmpp-7858d969d82eaaa7124b8d59a68c286f06cbf758.tar.bz2 slixmpp-7858d969d82eaaa7124b8d59a68c286f06cbf758.tar.xz slixmpp-7858d969d82eaaa7124b8d59a68c286f06cbf758.zip |
Remove usage of deprecated getchildren() method.
Diffstat (limited to 'sleekxmpp/xmlstream/matcher/xmlmask.py')
-rw-r--r-- | sleekxmpp/xmlstream/matcher/xmlmask.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sleekxmpp/xmlstream/matcher/xmlmask.py b/sleekxmpp/xmlstream/matcher/xmlmask.py index 40827312..a0568f08 100644 --- a/sleekxmpp/xmlstream/matcher/xmlmask.py +++ b/sleekxmpp/xmlstream/matcher/xmlmask.py @@ -151,8 +151,8 @@ class MatchXMLMask(MatcherBase): """ tag = tag.split('}')[-1] try: - children = [c.tag.split('}')[-1] for c in xml.getchildren()] + children = [c.tag.split('}')[-1] for c in xml] index = children.index(tag) except ValueError: return None - return xml.getchildren()[index] + return list(xml)[index] |