mercurial/hg.py
changeset 501 7ea1c88792bf
parent 499 81c563a254be
child 504 a350c1cd3fc5
--- a/mercurial/hg.py	Tue Jun 28 00:59:59 2005 -0800
+++ b/mercurial/hg.py	Tue Jun 28 02:03:25 2005 -0800
@@ -483,7 +483,7 @@
     def recover(self):
         lock = self.lock()
         if os.path.exists(self.join("recover")):
-            self.ui.status("attempting to rollback interrupted transaction\n")
+            self.ui.status("rolling back interrupted transaction\n")
             return transaction.rollback(self.opener, self.join("recover"))
         else:
             self.ui.warn("no interrupted transaction available\n")
@@ -491,7 +491,7 @@
     def undo(self):
         lock = self.lock()
         if os.path.exists(self.join("undo")):
-            self.ui.status("attempting to rollback last transaction\n")
+            self.ui.status("rolling back last transaction\n")
             transaction.rollback(self.opener, self.join("undo"))
             self.dirstate = None
             util.rename(self.join("undo.dirstate"), self.join("dirstate"))