Show More
@@ -514,7 +514,10 b' def debugstate(ui, repo):' | |||
|
514 | 514 | keys = dc.keys() |
|
515 | 515 | keys.sort() |
|
516 | 516 | for file_ in keys: |
|
517 | ui.write("%c %s\n" % (dc[file_][0], file_)) | |
|
517 | ui.write("%c %3o %10d %s %s\n" | |
|
518 | % (dc[file_][0], dc[file_][1] & 0777, dc[file_][2], | |
|
519 | time.strftime("%x %X", | |
|
520 | time.localtime(dc[file_][3])), file_)) | |
|
518 | 521 | |
|
519 | 522 | def debugindex(ui, file_): |
|
520 | 523 | """dump the contents of an index file""" |
General Comments 0
You need to be logged in to leave comments.
Login now