cmdutil: do not translate trivial string
authorMartin Geisler <mg@lazybytes.net>
Mon, 05 Apr 2010 01:00:14 +0200
changeset 10829 56fffc9c8928
parent 10828 1aa9464ce9ae
child 10830 824310023e4a
cmdutil: do not translate trivial string
mercurial/cmdutil.py
--- 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.