convert: do not ask for translation of "%s %s"
authorMartin Geisler <mg@lazybytes.net>
Sat, 27 Jun 2009 12:31:41 +0200
changeset 8970 eac360045ba4
parent 8969 c3d77d606de5
child 8971 a5a1009dd7ed
convert: do not ask for translation of "%s %s"
hgext/convert/common.py
--- a/hgext/convert/common.py	Sat Jun 27 12:21:26 2009 +0200
+++ b/hgext/convert/common.py	Sat Jun 27 12:31:41 2009 +0200
@@ -289,7 +289,7 @@
                 self.ui.warn(_('%s error:\n') % self.command)
                 self.ui.warn(output)
             msg = util.explain_exit(status)[0]
-            raise util.Abort(_('%s %s') % (self.command, msg))
+            raise util.Abort('%s %s' % (self.command, msg))
 
     def run0(self, cmd, *args, **kwargs):
         output, status = self.run(cmd, *args, **kwargs)