mirror of
https://github.com/Mikaela/Limnoria.git
synced 2025-02-06 01:24:05 +01:00
Channel: fix NameError: 'replyirc' -> 'replyIrc'. Closes GH-73.
Conflicts: src/version.py Signed-off-by: James McCoy <vega.james@gmail.com>
This commit is contained in:
parent
fa8385596d
commit
8056da06f6
@ -418,7 +418,7 @@ class Channel(callbacks.Plugin):
|
||||
nick = msg.args[1]
|
||||
nick = ircutils.toLower(nick)
|
||||
replyIrc = self.invites.pop((irc, nick), None)
|
||||
if replyirc is not None:
|
||||
if replyIrc is not None:
|
||||
replyIrc.error(format('There is no %s on this server.', nick))
|
||||
|
||||
class lobotomy(callbacks.Commands):
|
||||
|
Loading…
Reference in New Issue
Block a user