# HG changeset patch # User mpm@selenic.com # Date 1115255942 28800 # Node ID 54a57a5ebcb14de88a9ed46480d25be8ac1b8147 # Parent a664c2b624cfd8566732c16412e2baa4479648a2 Show date in history diff -r a664c2b624cf -r 54a57a5ebcb1 hg --- a/hg Wed May 04 15:42:30 2005 -0800 +++ b/hg Wed May 04 17:19:02 2005 -0800 @@ -37,7 +37,6 @@ dumpmanifest [rev] dump the latest or given revision of the manifest """ - options = {} opts = [('v', 'verbose', None, 'verbose'), ('d', 'debug', None, 'debug')] @@ -155,6 +154,8 @@ print "manifest: %4d:%s" % (repo.manifest.rev(changes[0]), hg.hex(changes[0])) print "user:", changes[1] + print "date:", time.asctime( + time.localtime(float(changes[2].split(' ')[0]))) print "files:", " ".join(changes[3]) print "description:" print changes[4]