##// END OF EJS Templates
subrepo: make 'in subrepo' string easier to find by external tools...
Angel Ezquerra -
r18297:7196f11c default
parent child Browse files
Show More
@@ -29,7 +29,7 b' def annotatesubrepoerror(func):'
29 raise ex
29 raise ex
30 except error.Abort, ex:
30 except error.Abort, ex:
31 subrepo = subrelpath(self)
31 subrepo = subrelpath(self)
32 errormsg = _('%s (in subrepo %s)') % (str(ex), subrepo)
32 errormsg = str(ex) + ' ' + _('(in subrepo %s)') % subrepo
33 # avoid handling this exception by raising a SubrepoAbort exception
33 # avoid handling this exception by raising a SubrepoAbort exception
34 raise SubrepoAbort(errormsg, hint=ex.hint, subrepo=subrepo)
34 raise SubrepoAbort(errormsg, hint=ex.hint, subrepo=subrepo)
35 return res
35 return res
General Comments 0
You need to be logged in to leave comments. Login now