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