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/componentxmpp.py | |
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/componentxmpp.py')
-rw-r--r-- | sleekxmpp/componentxmpp.py | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/sleekxmpp/componentxmpp.py b/sleekxmpp/componentxmpp.py index 20748b69..265ecd42 100644 --- a/sleekxmpp/componentxmpp.py +++ b/sleekxmpp/componentxmpp.py @@ -158,10 +158,8 @@ class ComponentXMPP(BaseXMPP): """ self.session_bind_event.set() self.session_started_event.set() - self.event("session_bind", self.xmpp.boundjid.full, direct=True) + self.event("session_bind", self.xmpp.boundjid, direct=True) self.event("session_start") - def _handle_probe(self, presence): - pto = presence['to'].bare - pfrom = presence['from'].bare - self.roster[pto][pfrom].handle_probe(presence) + def _handle_probe(self, pres): + self.roster[pres['to']][pres['from']].handle_probe(pres) |