changeset 21:54a57a5ebcb1

Show date in history
author mpm@selenic.com
date Wed, 04 May 2005 17:19:02 -0800
parents a664c2b624cf
children 40b8c158c540
files hg
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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]