Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 1f04772

Browse files
committed
Bugfix -- should pass headers=0 when formatting query results.
1 parent 21c4b5f commit 1f04772

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Tools/faqwiz/faqwiz.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -518,7 +518,7 @@ def do_recent(self):
518518
emit(ONE_RECENT, period=period)
519519
else:
520520
emit(SOME_RECENT, period=period, count=len(list))
521-
self.format_all(map(lambda (mtime, file): file, list))
521+
self.format_all(map(lambda (mtime, file): file, list), headers=0)
522522
emit(TAIL_RECENT)
523523

524524
def do_roulette(self):

0 commit comments

Comments
 (0)