##// END OF EJS Templates
Changed printing of copies in hg debugstate to: "copy: source -> dest"
Thomas Arendsen Hein -
r1126:624a3a4f default
parent child Browse files
Show More
@@ -690,9 +690,8 b' def debugstate(ui, repo):'
690 % (dc[file_][0], dc[file_][1] & 0777, dc[file_][2],
690 % (dc[file_][0], dc[file_][1] & 0777, dc[file_][2],
691 time.strftime("%x %X",
691 time.strftime("%x %X",
692 time.localtime(dc[file_][3])), file_))
692 time.localtime(dc[file_][3])), file_))
693 ui.write("\n")
694 for f in repo.dirstate.copies:
693 for f in repo.dirstate.copies:
695 ui.write("%s -> %s\n" % (repo.dirstate.copies[f], f))
694 ui.write("copy: %s -> %s\n" % (repo.dirstate.copies[f], f))
696
695
697 def debugdata(ui, file_, rev):
696 def debugdata(ui, file_, rev):
698 """dump the contents of an data file revision"""
697 """dump the contents of an data file revision"""
General Comments 0
You need to be logged in to leave comments. Login now