# HG changeset patch # User Martin Geisler # Date 2011-03-16 16:38:25 # Node ID e9628665b6704caf593950c2197be9fee3013bbd # Parent cfe8d35313f3cb0f90dd776fafc88af1a897c0b4 i18n: don't mark trivial string for translation diff --git a/hgext/convert/convcmd.py b/hgext/convert/convcmd.py --- a/hgext/convert/convcmd.py +++ b/hgext/convert/convcmd.py @@ -71,7 +71,7 @@ def convertsink(ui, path, type): 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):