mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-27 05:09:23 +01:00
irclib.py: Fix SASL on py3k
This commit is contained in:
parent
ff1d9c4f69
commit
f1198fb4e8
@ -906,7 +906,8 @@ class Irc(IrcCommandDispatcher):
|
||||
if not self.sasl_username:
|
||||
log.error('SASL username is not set, unable to identify.')
|
||||
else:
|
||||
auth_string = base64.b64encode('%s\x00%s\x00%s' % (self.sasl_username,
|
||||
auth_string =
|
||||
base64.b64encode('%s\x00%s\x00%s'.encode('utf-8') % (self.sasl_username,
|
||||
self.sasl_username, self.sasl_password))
|
||||
log.debug('Sending CAP REQ command, requesting capability \'sasl\'.')
|
||||
self.queueMsg(ircmsgs.IrcMsg(command="CAP", args=('REQ', 'sasl')))
|
||||
|
Loading…
Reference in New Issue
Block a user