diff mercurial/localrepo.py @ 21274:3b4c75690206

journal: set Abort hint when failing due to an abandoned transaction
author Johan Bjork <jbjoerk@gmail.com>
date Thu, 08 May 2014 14:58:25 +0000
parents 0054a77f49df
children a45af4da0421
line wrap: on
line diff
--- a/mercurial/localrepo.py	Thu May 08 16:37:33 2014 -0700
+++ b/mercurial/localrepo.py	Thu May 08 14:58:25 2014 +0000
@@ -857,7 +857,8 @@
         # abort here if the journal already exists
         if self.svfs.exists("journal"):
             raise error.RepoError(
-                _("abandoned transaction found - run hg recover"))
+                _("abandoned transaction found"),
+                hint=_("run 'hg recover' to clean up transaction"))
 
         def onclose():
             self.store.write(tr)