changeset 7737:26bdb7109170

commands: removed unnecessary string concatenation
author Martin Geisler <mg@daimi.au.dk>
date Wed, 04 Feb 2009 20:55:44 +0100
parents fb0776fe3e38
children db366ec8d0a4
files mercurial/commands.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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)