# HG changeset patch # User Thomas Arendsen Hein # Date 1125239044 -7200 # Node ID 624a3a4fa232bffcbc9ec680b1697f82b30a41e2 # Parent a33a7a543803c7383a6918b19797bf9fd6b83e8e Changed printing of copies in hg debugstate to: "copy: source -> dest" diff -r a33a7a543803 -r 624a3a4fa232 mercurial/commands.py --- a/mercurial/commands.py Sat Aug 27 23:45:27 2005 -0700 +++ b/mercurial/commands.py Sun Aug 28 16:24:04 2005 +0200 @@ -690,9 +690,8 @@ % (dc[file_][0], dc[file_][1] & 0777, dc[file_][2], time.strftime("%x %X", time.localtime(dc[file_][3])), file_)) - ui.write("\n") for f in repo.dirstate.copies: - ui.write("%s -> %s\n" % (repo.dirstate.copies[f], f)) + ui.write("copy: %s -> %s\n" % (repo.dirstate.copies[f], f)) def debugdata(ui, file_, rev): """dump the contents of an data file revision"""