Mercurial > hg
changeset 9197:a05aa192a00a
commands: remove ineffective parenthesis
author | Martin Geisler <mg@lazybytes.net> |
---|---|
date | Wed, 22 Jul 2009 23:08:32 +0200 |
parents | 07d127e771a1 |
children | 061eeb602354 |
files | mercurial/commands.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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):