summaryrefslogtreecommitdiff
path: root/slixmpp/plugins/xep_0009/remote.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_0009/remote.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_0009/remote.py')
-rw-r--r--slixmpp/plugins/xep_0009/remote.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/slixmpp/plugins/xep_0009/remote.py b/slixmpp/plugins/xep_0009/remote.py
index 9675c88d..a9f45486 100644
--- a/slixmpp/plugins/xep_0009/remote.py
+++ b/slixmpp/plugins/xep_0009/remote.py
@@ -163,7 +163,7 @@ class ACL:
@classmethod
def _next_token(cls, expression, index):
- new_index = expression.find('*', index)
+ new_index = expression.xml.find('*', index)
if new_index == 0:
return ''
else:
@@ -182,7 +182,7 @@ class ACL:
#! print "[TOKEN] '%s'" % token
size = len(token)
if size > 0:
- token_index = value.find(token, position)
+ token_index = value.xml.find(token, position)
if token_index == -1:
return False
else: