Fix requesting channel binding from sockets that don't support it.

This commit is contained in:
Lance Stout 2012-12-03 12:42:30 -08:00
parent b820351f64
commit def34f0e42

View file

@ -98,7 +98,7 @@ class FeatureMechanisms(BasePlugin):
jid = self.xmpp.requested_jid.bare
result[value] = creds.get('email', jid)
elif value == 'channel_binding':
if sys.version_info >= (3, 3):
if hasattr(self.xmpp.socket, 'get_channel_binding'):
result[value] = self.xmpp.socket.get_channel_binding()
else:
result[value] = None