summaryrefslogtreecommitdiff
path: root/sleekxmpp/features
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2012-10-15 15:00:23 -0700
committerLance Stout <lancestout@gmail.com>2012-10-15 15:00:23 -0700
commitcebc798e72fcc1a53b6962d26ec6bad121a953c1 (patch)
treedca8d4d541e68c7e5d963729d6e1c824cca08e6c /sleekxmpp/features
parente2e8c4b5dcca3dddfda6e60850a6754018e8f60d (diff)
parent9f6decdbc1dbb791006e590906bd94021b71495f (diff)
downloadslixmpp-cebc798e72fcc1a53b6962d26ec6bad121a953c1.tar.gz
slixmpp-cebc798e72fcc1a53b6962d26ec6bad121a953c1.tar.bz2
slixmpp-cebc798e72fcc1a53b6962d26ec6bad121a953c1.tar.xz
slixmpp-cebc798e72fcc1a53b6962d26ec6bad121a953c1.zip
Merge branch 'stream_features'
Diffstat (limited to 'sleekxmpp/features')
-rw-r--r--sleekxmpp/features/feature_mechanisms/mechanisms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/features/feature_mechanisms/mechanisms.py b/sleekxmpp/features/feature_mechanisms/mechanisms.py
index 672f4fa6..b480d5be 100644
--- a/sleekxmpp/features/feature_mechanisms/mechanisms.py
+++ b/sleekxmpp/features/feature_mechanisms/mechanisms.py
@@ -44,7 +44,7 @@ class FeatureMechanisms(BasePlugin):
}
def plugin_init(self):
- if not self.use_mech and not self.xmpp.boundjid.user:
+ if not self.use_mech and not self.xmpp.requested_jid.user:
self.use_mech = 'ANONYMOUS'
if self.sasl_callback is None: