Fix #invite message for py3

This commit is contained in:
Juhani Krekelä 2021-07-25 22:05:21 +03:00
parent cdddf8fd65
commit cc71019578
1 changed files with 1 additions and 1 deletions

View File

@ -573,7 +573,7 @@ def parse(nick, chan, command, arguments, irc):
irc.bot_response(nick, '%s: %s' % (chan.decode(), line))
trustedlock.release()
elif matchcmd(cmdline, '#invite'):
irc.bot_response(chan, '%s: #invite has been removed. Use manual invite' % nick)
irc.bot_response(chan, '%s: #invite has been removed. Use manual invite' % nick.decode())
elif matchcmd(cmdline, '#help'):
if matchcmd(cmdline, '#help', '[command]'):
command = parsecmd(cmdline, '[command]')