Mercurial > hg
changeset 26754:e7e1528cf200
spelling: fix typo in transaction error messages
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Sat, 17 Oct 2015 15:28:02 -0500 |
parents | 96dd93de548c |
children | bb0b955d050d |
files | mercurial/transaction.py |
diffstat | 1 files changed, 5 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/transaction.py Fri Oct 16 03:29:51 2015 +0900 +++ b/mercurial/transaction.py Sat Oct 17 15:28:02 2015 -0500 @@ -410,7 +410,7 @@ # cleanup temporary files for l, f, b, c in self._backupentries: if l not in self._vfsmap and c: - self.report("couldn't remote %s: unknown cache location %s\n" + self.report("couldn't remove %s: unknown cache location %s\n" % (b, l)) continue vfs = self._vfsmap[l] @@ -421,7 +421,7 @@ if not c: raise # Abort may be raise by read only opener - self.report("couldn't remote %s: %s\n" + self.report("couldn't remove %s: %s\n" % (vfs.join(b), inst)) self.entries = [] self._writeundo() @@ -434,7 +434,7 @@ if True: for l, _f, b, c in self._backupentries: if l not in self._vfsmap and c: - self.report("couldn't remote %s: unknown cache location" + self.report("couldn't remove %s: unknown cache location" "%s\n" % (b, l)) continue vfs = self._vfsmap[l] @@ -445,7 +445,7 @@ if not c: raise # Abort may be raise by read only opener - self.report("couldn't remote %s: %s\n" + self.report("couldn't remove %s: %s\n" % (vfs.join(b), inst)) self._backupentries = [] self.journal = None @@ -477,7 +477,7 @@ u = '' else: if l not in self._vfsmap and c: - self.report("couldn't remote %s: unknown cache location" + self.report("couldn't remove %s: unknown cache location" "%s\n" % (b, l)) continue vfs = self._vfsmap[l]