From: Guido van Rossum Date: Mon, 26 May 1997 16:02:00 +0000 (+0000) Subject: Bugfix -- should pass headers=0 when formatting query results. X-Git-Tag: v1.5a3~438 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1f04772347177cdbedfcaed2511f380f4ed6eb3a;p=thirdparty%2FPython%2Fcpython.git Bugfix -- should pass headers=0 when formatting query results. --- diff --git a/Tools/faqwiz/faqwiz.py b/Tools/faqwiz/faqwiz.py index cef983508f96..227649857423 100644 --- a/Tools/faqwiz/faqwiz.py +++ b/Tools/faqwiz/faqwiz.py @@ -518,7 +518,7 @@ class FaqWizard: emit(ONE_RECENT, period=period) else: emit(SOME_RECENT, period=period, count=len(list)) - self.format_all(map(lambda (mtime, file): file, list)) + self.format_all(map(lambda (mtime, file): file, list), headers=0) emit(TAIL_RECENT) def do_roulette(self):