changeset 13685:e9628665b670 stable

i18n: don't mark trivial string for translation
author Martin Geisler <mg@lazybytes.net>
date Wed, 16 Mar 2011 17:38:25 +0100
parents cfe8d35313f3
children c97ad3bd0b8d
files hgext/convert/convcmd.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/hgext/convert/convcmd.py	Wed Mar 16 17:34:13 2011 +0100
+++ b/hgext/convert/convcmd.py	Wed Mar 16 17:38:25 2011 +0100
@@ -71,7 +71,7 @@
         except NoRepo, inst:
             ui.note(_("convert: %s\n") % inst)
         except MissingTool, inst:
-            raise util.Abort(_('%s\n') % inst)
+            raise util.Abort('%s\n' % inst)
     raise util.Abort(_('%s: unknown repository type') % path)
 
 class progresssource(object):