Stop bolding exception.

This commit is contained in:
Jeremy Fincher 2004-05-07 16:13:02 +00:00
parent 81d1d56b04
commit 6d1092957a

View File

@ -115,9 +115,9 @@ class IrcFormatter(log.Formatter):
class ColorizedIrcFormatter(IrcFormatter):
def formatException(self, (E, e, tb)):
if conf.supybot.plugins.LogToIrc.colorized():
return ircutils.bold(ircutils.mircColor(
IrcFormatter.formatException(self, (E, e, tb)),
fg='red'))
return ircutils.mircColor(IrcFormatter.formatException(self,
(E, e, tb)),
fg='red')
else:
return IrcFormatter.formatException(self, (E, e, tb))