Submitter | Angel Ezquerra |
---|---|
Date | Jan. 3, 2013, 5:17 p.m. |
Message ID | <58dd1c9df93299eb2fd8.1357233431@Angel-PC.localdomain> |
Download | mbox | patch |
Permalink | /patch/369/ |
State | Superseded |
Headers | show |
Comments
Patch
diff --git a/mercurial/subrepo.py b/mercurial/subrepo.py --- a/mercurial/subrepo.py +++ b/mercurial/subrepo.py @@ -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