Use SASLPrepFailure as the exception name instead of UnicodeError.

This commit is contained in:
Lance Stout
2012-05-14 23:12:54 -07:00
parent 8a23f28dfa
commit f5beac2afa
3 changed files with 23 additions and 15 deletions

View File

@@ -10,6 +10,7 @@ import logging
from sleekxmpp.thirdparty import suelta
from sleekxmpp.thirdparty.suelta.exceptions import SASLCancelled, SASLError
from sleekxmpp.thirdparty.suelta.exceptions import SASLPrepFailure
from sleekxmpp.stanza import StreamFeatures
from sleekxmpp.xmlstream import RestartStream, register_stanza_plugin
@@ -129,7 +130,7 @@ class FeatureMechanisms(BasePlugin):
except SASLError:
self.attempted_mechs.add(self.mech.name)
self._send_auth()
except UnicodeError as e:
except SASLPrepFailure:
log.exception("A credential value did not pass SASLprep.")
self.xmpp.disconnect()
else: