summaryrefslogtreecommitdiff
path: root/sleekxmpp/clientxmpp.py
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2010-11-17 16:01:27 -0500
committerLance Stout <lancestout@gmail.com>2010-11-17 16:01:27 -0500
commit7ba6d5e02daced34960a11506b4600ba096a9570 (patch)
tree3ff4671b65a9506e1547f0182dedea3506c941a2 /sleekxmpp/clientxmpp.py
parentea48bb5ac58aa186c18c42c83e21a6a636bd22a9 (diff)
downloadslixmpp-7ba6d5e02daced34960a11506b4600ba096a9570.tar.gz
slixmpp-7ba6d5e02daced34960a11506b4600ba096a9570.tar.bz2
slixmpp-7ba6d5e02daced34960a11506b4600ba096a9570.tar.xz
slixmpp-7ba6d5e02daced34960a11506b4600ba096a9570.zip
Fix Node set to None error.
Diffstat (limited to 'sleekxmpp/clientxmpp.py')
-rw-r--r--sleekxmpp/clientxmpp.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/clientxmpp.py b/sleekxmpp/clientxmpp.py
index 1c600812..32795e4b 100644
--- a/sleekxmpp/clientxmpp.py
+++ b/sleekxmpp/clientxmpp.py
@@ -384,7 +384,7 @@ class ClientXMPP(BaseXMPP):
self.set_jid(response.xml.find('{%s}bind/{%s}jid' % (bind_ns,
bind_ns)).text)
self.bound = True
- log.info("Node set to: %s" % self.boundjid.fulljid)
+ log.info("Node set to: %s" % self.boundjid.full)
session_ns = 'urn:ietf:params:xml:ns:xmpp-session'
if "{%s}session" % session_ns not in self.features or self.bindfail:
log.debug("Established Session")