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/stanza | |
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/stanza')
-rw-r--r-- | sleekxmpp/stanza/error.py | 4 | ||||
-rw-r--r-- | sleekxmpp/stanza/iq.py | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sleekxmpp/stanza/error.py b/sleekxmpp/stanza/error.py index 809a74b4..8d9266bd 100644 --- a/sleekxmpp/stanza/error.py +++ b/sleekxmpp/stanza/error.py @@ -89,7 +89,7 @@ class Error(ElementBase): def get_condition(self): """Return the condition element's name.""" - for child in self.xml.getchildren(): + for child in self.xml: if "{%s}" % self.condition_ns in child.tag: cond = child.tag.split('}', 1)[-1] if cond in self.conditions: @@ -110,7 +110,7 @@ class Error(ElementBase): def del_condition(self): """Remove the condition element.""" - for child in self.xml.getchildren(): + for child in self.xml: if "{%s}" % self.condition_ns in child.tag: tag = child.tag.split('}', 1)[-1] if tag in self.conditions: diff --git a/sleekxmpp/stanza/iq.py b/sleekxmpp/stanza/iq.py index 47d51b04..f45b3c67 100644 --- a/sleekxmpp/stanza/iq.py +++ b/sleekxmpp/stanza/iq.py @@ -122,7 +122,7 @@ class Iq(RootStanza): def get_query(self): """Return the namespace of the <query> element.""" - for child in self.xml.getchildren(): + for child in self.xml: if child.tag.endswith('query'): ns = child.tag.split('}')[0] if '{' in ns: @@ -132,7 +132,7 @@ class Iq(RootStanza): def del_query(self): """Remove the <query> element.""" - for child in self.xml.getchildren(): + for child in self.xml: if child.tag.endswith('query'): self.xml.remove(child) return self |