Fix typo (lamda => lambda).

This commit is contained in:
Valentin Lorentz 2011-11-11 19:56:20 +01:00
parent f232eaac6f
commit 348d1bd99c
2 changed files with 2 additions and 2 deletions

View File

@ -971,7 +971,7 @@ class Irc(IrcCommandDispatcher):
if umodes[0] in '+-': if umodes[0] in '+-':
(addSub, umodes) = (umodes[0], umodes[1:]) (addSub, umodes) = (umodes[0], umodes[1:])
if supported: if supported:
umodes = filter(lamda m: m in supported, umodes) umodes = filter(lambda m: m in supported, umodes)
umodes = ''.join(addSub, umodes) umodes = ''.join(addSub, umodes)
log.info('Sending user modes to %s: %s', self.network, umodes) log.info('Sending user modes to %s: %s', self.network, umodes)
self.sendMsg(ircmsgs.mode(self.nick, umodes)) self.sendMsg(ircmsgs.mode(self.nick, umodes))

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-11-07T19:40:04+0100)' version = '0.83.4.1+limnoria (2011-11-11T19:56:20+0100)'