]> granicus.if.org Git - python/commitdiff
Bugfix -- should pass headers=0 when formatting query results.
authorGuido van Rossum <guido@python.org>
Mon, 26 May 1997 16:02:00 +0000 (16:02 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 26 May 1997 16:02:00 +0000 (16:02 +0000)
Tools/faqwiz/faqwiz.py

index cef983508f967f7630cf1e52da30faf01a59283a..227649857423fc0999940b5a6a043bcb7535e660 100644 (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):