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:
James Lu 2018-01-27 12:33:21 -08:00
parent 5daaa14825
commit eb1cb9bd76

View File

@ -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):