diff options
author | Stefan de Konink <stefan@konink.de> | 2011-01-23 01:47:22 +0800 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2011-01-23 02:08:29 +0800 |
commit | c3be6ea0b2141fe86b9aa0c2701e43b72f86ae30 (patch) | |
tree | bc9f72845c4db4ed6f0ba8f667fc1f017c744313 /sleekxmpp/plugins/xep_0078.py | |
parent | da332365d4e97720ac182e0f66b73919d764a555 (diff) | |
download | slixmpp-c3be6ea0b2141fe86b9aa0c2701e43b72f86ae30.tar.gz slixmpp-c3be6ea0b2141fe86b9aa0c2701e43b72f86ae30.tar.bz2 slixmpp-c3be6ea0b2141fe86b9aa0c2701e43b72f86ae30.tar.xz slixmpp-c3be6ea0b2141fe86b9aa0c2701e43b72f86ae30.zip |
My hunch is that these should also be updated.
Diffstat (limited to 'sleekxmpp/plugins/xep_0078.py')
-rw-r--r-- | sleekxmpp/plugins/xep_0078.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/plugins/xep_0078.py b/sleekxmpp/plugins/xep_0078.py index d2c81b16..bb6a4632 100644 --- a/sleekxmpp/plugins/xep_0078.py +++ b/sleekxmpp/plugins/xep_0078.py @@ -36,7 +36,7 @@ class xep_0078(base.base_plugin): log.debug("Starting jabber:iq:auth Authentication") auth_request = self.xmpp.makeIqGet() auth_request_query = ET.Element('{jabber:iq:auth}query') - auth_request.attrib['to'] = self.xmpp.server + auth_request.attrib['to'] = self.xmpp.boundjid.host username = ET.Element('username') username.text = self.xmpp.username auth_request_query.append(username) |