diff mercurial/cmdutil.py @ 10829:56fffc9c8928

cmdutil: do not translate trivial string
author Martin Geisler <mg@lazybytes.net>
date Mon, 05 Apr 2010 01:00:14 +0200
parents 36c6a667d733
children 8d5f5122a732
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.