Mercurial > hg-stable
changeset 70:ce080e8eccd7
Fix debugindex formatting for large repos
author | mpm@selenic.com |
---|---|
date | Sat, 14 May 2005 10:13:49 -0800 |
parents | ab03c7a52cf2 |
children | 47c9a869adee |
files | hg |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/hg Fri May 13 18:22:08 2005 -0800 +++ b/hg Sat May 14 10:13:49 2005 -0800 @@ -290,11 +290,11 @@ elif cmd == "debugindex": r = hg.revlog(open, args[0], "") - print " rev offset length base linkrev"+\ + print " rev offset length base linkrev"+\ " p1 p2 nodeid" for i in range(r.count()): e = r.index[i] - print "% 6d % 9d % 7d % 5d % 7d %s.. %s.. %s.." % ( + print "% 6d % 9d % 7d % 6d % 7d %s.. %s.. %s.." % ( i, e[0], e[1], e[2], e[3], hg.hex(e[4][:5]), hg.hex(e[5][:5]), hg.hex(e[6][:5]))