diff options
author | Guido van Rossum <guido@python.org> | 1997-05-26 16:02:00 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-05-26 16:02:00 (GMT) |
commit | 1f04772347177cdbedfcaed2511f380f4ed6eb3a (patch) | |
tree | d6cd7133e94a54efea45706f1259327a49b7d147 /Tools/faqwiz | |
parent | 21c4b5f66a3813e5664755da4003b8e7868bd12c (diff) | |
download | cpython-1f04772347177cdbedfcaed2511f380f4ed6eb3a.zip cpython-1f04772347177cdbedfcaed2511f380f4ed6eb3a.tar.gz cpython-1f04772347177cdbedfcaed2511f380f4ed6eb3a.tar.bz2 |
Bugfix -- should pass headers=0 when formatting query results.
Diffstat (limited to 'Tools/faqwiz')
-rw-r--r-- | Tools/faqwiz/faqwiz.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ 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): |