mercurial/subrepo.py
changeset 12503 b4711585a455
parent 12323 f00953d9533c
child 12506 e7d45e41338c
--- 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):