# HG changeset patch # User Martin Geisler # Date 2009-02-04 19:55:44 # Node ID 26bdb71091703c54213435ffa18ca00908460d96 # Parent fb0776fe3e38ea579a06ecd061ec1b3697b6b9f4 commands: removed unnecessary string concatenation diff --git a/mercurial/commands.py b/mercurial/commands.py --- a/mercurial/commands.py +++ b/mercurial/commands.py @@ -835,7 +835,7 @@ def debugdate(ui, date, range=None, **op 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)