diff options
author | Lance Stout <lancestout@gmail.com> | 2011-07-02 23:09:29 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2011-07-02 23:09:29 -0700 |
commit | 0224d028e76ba608400fe55602fdb84f8e70f13b (patch) | |
tree | 3c256f3edcf66a2824cc4933f240ba932cea91be /sleekxmpp/features/feature_bind/bind.py | |
parent | 540d7496954c38e5483205410662120ec9ccd8c8 (diff) | |
download | slixmpp-0224d028e76ba608400fe55602fdb84f8e70f13b.tar.gz slixmpp-0224d028e76ba608400fe55602fdb84f8e70f13b.tar.bz2 slixmpp-0224d028e76ba608400fe55602fdb84f8e70f13b.tar.xz slixmpp-0224d028e76ba608400fe55602fdb84f8e70f13b.zip |
SASL failure event now includes the failure stanza.
Broke SASL stanzas into separate files.
Fixed typo in feature_bind.
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 0b0f2033..de03192c 100644 --- a/sleekxmpp/features/feature_bind/bind.py +++ b/sleekxmpp/features/feature_bind/bind.py @@ -53,7 +53,7 @@ class feature_bind(base_plugin): self.xmpp.set_jid(response['bind']['jid']) self.xmpp.bound = True - self.features.add('bind') + self.xmpp.features.add('bind') log.info("Node set to: %s" % self.xmpp.boundjid.full) |