summaryrefslogtreecommitdiff
path: root/slixmpp/plugins/xep_0325/control.py
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2016-09-20 16:45:29 +0900
committerEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2016-09-20 16:45:29 +0900
commit3a9b45e4f279c430242f8d6f3ee7c9506ba0d208 (patch)
tree205a4d6e95af1a102facd9ddd42db887bffe1399 /slixmpp/plugins/xep_0325/control.py
parentb8e091233e152572786080f21cdc8d1b844912ed (diff)
downloadslixmpp-3a9b45e4f279c430242f8d6f3ee7c9506ba0d208.tar.gz
slixmpp-3a9b45e4f279c430242f8d6f3ee7c9506ba0d208.tar.bz2
slixmpp-3a9b45e4f279c430242f8d6f3ee7c9506ba0d208.tar.xz
slixmpp-3a9b45e4f279c430242f8d6f3ee7c9506ba0d208.zip
ElementBase: Remove deprecated find() and findall() methods.disco
Diffstat (limited to 'slixmpp/plugins/xep_0325/control.py')
-rw-r--r--slixmpp/plugins/xep_0325/control.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/slixmpp/plugins/xep_0325/control.py b/slixmpp/plugins/xep_0325/control.py
index 9a493b02..5c1b3003 100644
--- a/slixmpp/plugins/xep_0325/control.py
+++ b/slixmpp/plugins/xep_0325/control.py
@@ -540,7 +540,7 @@ class XEP_0325(BasePlugin):
fields = [f['name'] for f in iq['setResponse']['datas']]
error_msg = None
- if not iq['setResponse'].find('error') is None and not iq['setResponse']['error']['text'] == "":
+ if not iq['setResponse'].xml.find('error') is None and not iq['setResponse']['error']['text'] == "":
error_msg = iq['setResponse']['error']['text']
callback = self.sessions[seqnr]["callback"]