diff options
author | Nathan Fritz <nathan@andyet.net> | 2010-04-07 23:10:32 -0700 |
---|---|---|
committer | Nathan Fritz <nathan@andyet.net> | 2010-04-07 23:10:32 -0700 |
commit | ecd5a172ed49cbdf69cb3eaf0786fd18d801ee65 (patch) | |
tree | d41aebdee8c6e6ed58850c7de006e00e405b9ddb /sleekxmpp/plugins/xep_0078.py | |
parent | 935ee4d14e80899fa45bb3d9296e123f642cc413 (diff) | |
download | slixmpp-ecd5a172ed49cbdf69cb3eaf0786fd18d801ee65.tar.gz slixmpp-ecd5a172ed49cbdf69cb3eaf0786fd18d801ee65.tar.bz2 slixmpp-ecd5a172ed49cbdf69cb3eaf0786fd18d801ee65.tar.xz slixmpp-ecd5a172ed49cbdf69cb3eaf0786fd18d801ee65.zip |
replaced usage of deprecated iq result on send. Fixed old send result to use stanzas instead of ElementTree
Diffstat (limited to 'sleekxmpp/plugins/xep_0078.py')
-rw-r--r-- | sleekxmpp/plugins/xep_0078.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sleekxmpp/plugins/xep_0078.py b/sleekxmpp/plugins/xep_0078.py index 8cce0eb0..f8732905 100644 --- a/sleekxmpp/plugins/xep_0078.py +++ b/sleekxmpp/plugins/xep_0078.py @@ -50,7 +50,7 @@ class xep_0078(base.base_plugin): username.text = self.xmpp.username auth_request_query.append(username) auth_request.append(auth_request_query) - result = self.xmpp.send(auth_request, self.xmpp.makeIqResult(self.xmpp.id)) + result = auth_request.send() rquery = result.find('{jabber:iq:auth}query') attempt = self.xmpp.makeIqSet() query = ET.Element('{jabber:iq:auth}query') @@ -69,7 +69,7 @@ class xep_0078(base.base_plugin): digest.text = hashlib.sha1(b"%s%s" % (self.streamid, self.xmpp.password)).hexdigest() query.append(digest) attempt.append(query) - result = self.xmpp.send(attempt, self.xmpp.makeIq(self.xmpp.id)) + result = attempt.send() if result.attrib['type'] == 'result': with self.xmpp.lock: self.xmpp.authenticated = True |