From eac7561ed1a326f46622a5146f171af89176c2a3 Mon Sep 17 00:00:00 2001 From: Aaron Griffith Date: Tue, 15 Nov 2011 15:47:33 -0500 Subject: [PATCH] redirecting output to a log file now works on Python 2.6 (Issue #535) --- overviewer_core/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/overviewer_core/util.py b/overviewer_core/util.py index 8a2947b..26a85d5 100644 --- a/overviewer_core/util.py +++ b/overviewer_core/util.py @@ -288,7 +288,7 @@ class DumbFormatter(HighlightingFormatter): line = "*" * min(79,len(line)) + "\n" + line return line else: - return super(DumbFormatter, self).highlight(record) + return HighlightingFormatter.highlight(self, record) class ANSIColorFormatter(HighlightingFormatter):