Mercurial > public > mercurial-scm > hg-stable
diff mercurial/commands.py @ 7737:26bdb7109170
commands: removed unnecessary string concatenation
author | Martin Geisler <mg@daimi.au.dk> |
---|---|
date | Wed, 04 Feb 2009 20:55:44 +0100 |
parents | deec6628e62b |
children | edcb56991afe |
line wrap: on
line diff
--- a/mercurial/commands.py Wed Feb 04 20:53:38 2009 +0100 +++ b/mercurial/commands.py Wed Feb 04 20:55:44 2009 +0100 @@ -835,7 +835,7 @@ def debugindex(ui, file_): """dump the contents of an index file""" r = revlog.revlog(util.opener(os.getcwd(), audit=False), file_) - ui.write(" rev offset length base linkrev" + + ui.write(" rev offset length base linkrev" " nodeid p1 p2\n") for i in r: node = r.node(i)