Fixed the bug, but forgot to commit.

This commit is contained in:
Jeremy Fincher 2004-12-01 21:46:23 +00:00
parent 40a2e07956
commit 3606f2ec9e
1 changed files with 0 additions and 2 deletions

View File

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