diff options
author | Lance Stout <lancestout@gmail.com> | 2013-03-28 12:20:38 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2013-03-28 12:20:38 -0700 |
commit | 0a2737dc77709daa0196340368b7ffbfaf71f641 (patch) | |
tree | 087efc13f84b19e4c0b6820f7956eeac0fd3784c /sleekxmpp/features/feature_bind/bind.py | |
parent | 8b73c2bcff14fbda4b2549f167047a7ca1187fa8 (diff) | |
parent | 481971928c972a96a114b6dcf6480e48b530d95b (diff) | |
download | slixmpp-0a2737dc77709daa0196340368b7ffbfaf71f641.tar.gz slixmpp-0a2737dc77709daa0196340368b7ffbfaf71f641.tar.bz2 slixmpp-0a2737dc77709daa0196340368b7ffbfaf71f641.tar.xz slixmpp-0a2737dc77709daa0196340368b7ffbfaf71f641.zip |
Merge pull request #228 from anton-ryzhov/events
Some events refactoring
Diffstat (limited to 'sleekxmpp/features/feature_bind/bind.py')
-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 d2adc27b..bc145620 100644 --- a/sleekxmpp/features/feature_bind/bind.py +++ b/sleekxmpp/features/feature_bind/bind.py @@ -62,4 +62,4 @@ class FeatureBind(BasePlugin): log.debug("Established Session") self.xmpp.sessionstarted = True self.xmpp.session_started_event.set() - self.xmpp.event("session_start") + self.xmpp.event('session_start') |