# HG changeset patch # User Angel Ezquerra # Date 1357231345 -3600 # Node ID 7196f11c5c7da72c3cf3e66a934a3bbbb194367e # Parent a74101cd6965c33ef35e28cb69512b72c80fdc2f subrepo: make 'in subrepo' string easier to find by external tools This patch is meant to make it easier for tools that wrap the mercurial output (such as TortoiseHg) to find the "in subrepo MYSUBREPO" string that (since 9e3910db4e78) is appended after subrepo error messages, particularly when the mercurial output is translated to a non-English language. The message remains the same but the '%s' that was used to prepend the original error message in front of the 'in subrepo' string has been moved out of the translatable string. As an example of the usefulness of making it easy to look for "in subrepo MYSUBREPO" strings, TortoiseHg looks for these strings in error messages in order to "linkify them" (i.e. convert "MYSUBREPO" into alink to the corresponding subrepo). The original string made it hard for a tool such as TortoiseHg to look for the translated string on mercurial's output because the translated string contained the error message itself. This meant that a regular expression was required to ignore the error message part. With this change TortoiseHg can just get the translated "(in subrepo %s)" string, substitute %s for the subrepo path (which it gets from the subrepo exception) and simply search for the resulting string (no regular expression needed, or at least a much simpler regular expression could be used). Additionaly, the existing string could lead a translator mistakenly assume that it was possible invert the order of the %s (error and subrepo path) fields, which would not work because the string interpolation was position based. diff -r a74101cd6965 -r 7196f11c5c7d mercurial/subrepo.py --- a/mercurial/subrepo.py Thu Jan 10 10:35:37 2013 -0800 +++ b/mercurial/subrepo.py Thu Jan 03 17:42:25 2013 +0100 @@ -29,7 +29,7 @@ raise ex except error.Abort, ex: subrepo = subrelpath(self) - errormsg = _('%s (in subrepo %s)') % (str(ex), subrepo) + errormsg = str(ex) + ' ' + _('(in subrepo %s)') % subrepo # avoid handling this exception by raising a SubrepoAbort exception raise SubrepoAbort(errormsg, hint=ex.hint, subrepo=subrepo) return res