diff -r 41f2fa72fa82 -r b4711585a455 mercurial/subrepo.py --- 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):