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