commit | 1f04772347177cdbedfcaed2511f380f4ed6eb3a | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Mon May 26 16:02:00 1997 +0000 |
committer | Guido van Rossum <guido@python.org> | Mon May 26 16:02:00 1997 +0000 |
tree | d6cd7133e94a54efea45706f1259327a49b7d147 | |
parent | 21c4b5f66a3813e5664755da4003b8e7868bd12c [diff] [blame] |
Bugfix -- should pass headers=0 when formatting query results.
diff --git a/Tools/faqwiz/faqwiz.py b/Tools/faqwiz/faqwiz.py index cef9835..2276498 100644 --- a/Tools/faqwiz/faqwiz.py +++ b/Tools/faqwiz/faqwiz.py
@@ -518,7 +518,7 @@ 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):