##// END OF EJS Templates
Show date in history
mpm@selenic.com -
r21:54a57a5e default
parent child Browse files
Show More
@@ -37,7 +37,6 b' def help():'
37 37 dumpmanifest [rev] dump the latest or given revision of the manifest
38 38 """
39 39
40
41 40 options = {}
42 41 opts = [('v', 'verbose', None, 'verbose'),
43 42 ('d', 'debug', None, 'debug')]
@@ -155,6 +154,8 b' elif cmd == "history":'
155 154 print "manifest: %4d:%s" % (repo.manifest.rev(changes[0]),
156 155 hg.hex(changes[0]))
157 156 print "user:", changes[1]
157 print "date:", time.asctime(
158 time.localtime(float(changes[2].split(' ')[0])))
158 159 print "files:", " ".join(changes[3])
159 160 print "description:"
160 161 print changes[4]
General Comments 0
You need to be logged in to leave comments. Login now