Mercurial > public > mercurial-scm > hg-stable
diff mercurial/subrepo.py @ 12503:b4711585a455
subrepo: improve lookup error messages
author | Wagner Bruna <wbruna@softwareexpress.com.br> |
---|---|
date | Mon, 13 Sep 2010 10:33:49 -0300 |
parents | f00953d9533c |
children | e7d45e41338c |
line wrap: on
line diff
--- a/mercurial/subrepo.py Sun Sep 26 22:22:59 2010 +0200 +++ b/mercurial/subrepo.py Mon Sep 13 10:33:49 2010 -0300 @@ -331,7 +331,7 @@ ctx2 = self._repo[rev2] return self._repo.status(ctx1, ctx2, **opts) except error.RepoLookupError, inst: - self._repo.ui.warn(_("warning: %s in %s\n") + self._repo.ui.warn(_('warning: error "%s" in subrepository "%s"\n') % (inst, relpath(self))) return [], [], [], [], [], [], [] @@ -347,7 +347,7 @@ prefix=os.path.join(prefix, self._path), listsubrepos=True, **opts) except error.RepoLookupError, inst: - self._repo.ui.warn(_("warning: %s in %s\n") + self._repo.ui.warn(_('warning: error "%s" in subrepository "%s"\n') % (inst, relpath(self))) def archive(self, archiver, prefix):