commands: remove ineffective parenthesis
authorMartin Geisler <mg@lazybytes.net>
Wed, 22 Jul 2009 23:08:32 +0200
changeset 9197 a05aa192a00a
parent 9196 07d127e771a1
child 9198 061eeb602354
commands: remove ineffective parenthesis
mercurial/commands.py
--- a/mercurial/commands.py	Wed Jul 22 22:56:45 2009 +0200
+++ b/mercurial/commands.py	Wed Jul 22 23:08:32 2009 +0200
@@ -239,7 +239,7 @@
     commit_opts['addremove'] = False
     if not commit_opts['message'] and not commit_opts['logfile']:
         # we don't translate commit messages
-        commit_opts['message'] = "Backed out changeset %s" % (short(node))
+        commit_opts['message'] = "Backed out changeset %s" % short(node)
         commit_opts['force_editor'] = True
     commit(ui, repo, **commit_opts)
     def nice(node):