Mercurial > hg
changeset 10829:56fffc9c8928
cmdutil: do not translate trivial string
author | Martin Geisler <mg@lazybytes.net> |
---|---|
date | Mon, 05 Apr 2010 01:00:14 +0200 |
parents | 1aa9464ce9ae |
children | 824310023e4a |
files | mercurial/cmdutil.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/cmdutil.py Sun Apr 04 02:39:45 2010 +0200 +++ b/mercurial/cmdutil.py Mon Apr 05 01:00:14 2010 +0200 @@ -944,7 +944,7 @@ msg = _("%s: no key named '%s'") raise util.Abort(msg % (self.t.mapfile, inst.args[0])) except SyntaxError, inst: - raise util.Abort(_('%s: %s') % (self.t.mapfile, inst.args[0])) + raise util.Abort('%s: %s' % (self.t.mapfile, inst.args[0])) def show_changeset(ui, repo, opts, buffered=False, matchfn=False): """show one changeset using template or regular display.