mirror of
https://github.com/Mikaela/Limnoria.git
synced 2025-01-11 20:52:42 +01:00
Services: don't mangle the case of NickServ notices in logging
This might be confusing if you're dealing with password changes, etc.
This commit is contained in:
parent
5daaa14825
commit
eb1cb9bd76
@ -345,7 +345,8 @@ class Services(callbacks.Plugin):
|
||||
'NickServ %s. Check email at %s and send the '
|
||||
'auth command to NickServ.', on, email)
|
||||
else:
|
||||
self.log.info('Received notice from NickServ %s: %q.', on, s)
|
||||
self.log.info('Received notice from NickServ %s: %q.', on,
|
||||
ircutils.stripFormatting(msg.args[1]))
|
||||
|
||||
def checkPrivileges(self, irc, channel):
|
||||
if self.disabled(irc):
|
||||
|
Loading…
Reference in New Issue
Block a user