Channel: fix NameError: 'replyirc' -> 'replyIrc'. Closes GH-73.

This commit is contained in:
Valentin Lorentz 2011-07-09 14:05:28 +02:00
parent 3a9d980df4
commit 0dfdfa2d28
2 changed files with 2 additions and 2 deletions

View File

@ -438,7 +438,7 @@ class Channel(callbacks.Plugin):
nick = msg.args[1] nick = msg.args[1]
nick = ircutils.toLower(nick) nick = ircutils.toLower(nick)
replyIrc = self.invites.pop((irc, nick), None) 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)) replyIrc.error(format('There is no %s on this server.', nick))
class lobotomy(callbacks.Commands): class lobotomy(callbacks.Commands):

View File

@ -1,3 +1,3 @@
"""stick the various versioning attributes in here, so we only have to change """stick the various versioning attributes in here, so we only have to change
them once.""" them once."""
version = '0.83.4.1+limnoria (2011-07-09T13:44:16+0200)' version = '0.83.4.1+limnoria (2011-07-09T14:05:28+0200)'