From 6d1092957a550b79a34e5b461e62b546af55c0b1 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Fri, 7 May 2004 16:13:02 +0000 Subject: [PATCH] Stop bolding exception. --- plugins/LogToIrc.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/LogToIrc.py b/plugins/LogToIrc.py index e7bca386c..8e4c2a6ec 100644 --- a/plugins/LogToIrc.py +++ b/plugins/LogToIrc.py @@ -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))