mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-23 19:19:32 +01:00
Channel: fix NameError: 'replyirc' -> 'replyIrc'. Closes GH-73.
This commit is contained in:
parent
3a9d980df4
commit
0dfdfa2d28
@ -438,7 +438,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):
|
||||
|
@ -1,3 +1,3 @@
|
||||
"""stick the various versioning attributes in here, so we only have to change
|
||||
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)'
|
||||
|
Loading…
Reference in New Issue
Block a user