Bugfix -- should pass headers=0 when formatting query results.

This commit is contained in:
Guido van Rossum 1997-05-26 16:02:00 +00:00
parent 21c4b5f66a
commit 1f04772347
1 changed files with 1 additions and 1 deletions

View File

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