changeset 12800:598bf07fc896 stable

dispatch: backout 0c605364373c The parenthesis may need translation too: Laurens Holst pointed out that Japanese uses full-width parentheses: () (U+FF08 U+FF09).
author Martin Geisler <mg@lazybytes.net>
date Thu, 21 Oct 2010 11:23:26 +0200
parents 8f71e5074e3c
children cddea24aafed
files mercurial/dispatch.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/dispatch.py	Thu Oct 21 10:54:37 2010 +0200
+++ b/mercurial/dispatch.py	Thu Oct 21 11:23:26 2010 +0200
@@ -24,7 +24,7 @@
     except util.Abort, inst:
         sys.stderr.write(_("abort: %s\n") % inst)
         if inst.hint:
-            sys.stderr.write("(%s)\n" % inst.hint)
+            sys.stderr.write(_("(%s)\n") % inst.hint)
         return -1
     except error.ParseError, inst:
         if len(inst.args) > 1: