diff options
author | Lance Stout <lancestout@gmail.com> | 2012-07-20 00:25:32 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2012-07-20 00:25:32 -0700 |
commit | 060c9ab6794cbe6c62c312b1f42bd3767ff66b80 (patch) | |
tree | 4802e7d13643dc4546e44bdd2e135dd9ad73b34c /sleekxmpp/features | |
parent | 78f03253983779673beaf3c102ae315707a49d2c (diff) | |
parent | acd9c32a9f8ba5476ac238a7536c838789ed4ab5 (diff) | |
download | slixmpp-060c9ab6794cbe6c62c312b1f42bd3767ff66b80.tar.gz slixmpp-060c9ab6794cbe6c62c312b1f42bd3767ff66b80.tar.bz2 slixmpp-060c9ab6794cbe6c62c312b1f42bd3767ff66b80.tar.xz slixmpp-060c9ab6794cbe6c62c312b1f42bd3767ff66b80.zip |
Merge branch 'master' into develop
Diffstat (limited to 'sleekxmpp/features')
-rw-r--r-- | sleekxmpp/features/feature_bind/bind.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/features/feature_bind/bind.py b/sleekxmpp/features/feature_bind/bind.py index 2253d5ae..0584b308 100644 --- a/sleekxmpp/features/feature_bind/bind.py +++ b/sleekxmpp/features/feature_bind/bind.py @@ -50,7 +50,7 @@ class FeatureBind(BasePlugin): self.xmpp.set_jid(response['bind']['jid']) self.xmpp.bound = True - self.xmpp.event('session_bind', self.xmpp.boundjid.full, direct=True) + self.xmpp.event('session_bind', self.xmpp.boundjid, direct=True) self.xmpp.session_bind_event.set() self.xmpp.features.add('bind') |