From 3606f2ec9e9fbc8141a94633e212e7a4a3899b8c Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Wed, 1 Dec 2004 21:46:23 +0000 Subject: [PATCH] Fixed the bug, but forgot to commit. --- plugins/LogToIrc.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/plugins/LogToIrc.py b/plugins/LogToIrc.py index 822057a4a..640755fa5 100644 --- a/plugins/LogToIrc.py +++ b/plugins/LogToIrc.py @@ -106,9 +106,7 @@ class IrcFormatter(log.Formatter): def formatException(self, (E, e, tb)): L = [utils.exnToString(e), '::'] frames = utils.stackTrace(frame=tb.tb_frame).split() - frames.reverse() L.extend(frames) - frames.reverse() # Back to front, please. del tb while sum(imap(len, L)) > 350: L.pop()