commands: removed unnecessary string concatenation
authorMartin Geisler <mg@daimi.au.dk>
Wed, 04 Feb 2009 20:55:44 +0100
changeset 7737 26bdb7109170
parent 7736 fb0776fe3e38
child 7738 db366ec8d0a4
commands: removed unnecessary string concatenation
mercurial/commands.py
--- 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)