On Jan 15, 2008 5:17 AM, Junio C Hamano <gitster@xxxxxxxxx> wrote: > Mark Drago <markdrago@xxxxxxxxx> writes: > > > + log_data = os.popen('hg log -r %d --template "{tags}\n{date|date}\n{author}\n"' % cset).readlines() > > I've already seen Stelian's Ack, but just for my sanity, let me > make sure one thing. The above {date|date} is correct, not a > typo? Yeah. Everything after the pipe character is a filter and there is a template keyword and a filter that are both called 'date'. mdrago@laptop:~/Code/trunk$ hg log -r 4 --template '{date}\n' 1197080765.018000 mdrago@laptop:~/Code/trunk$ hg log -r 4 --template '{date|date}\n' Fri Dec 07 21:26:05 2007 -0500 Mark. - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html