##// END OF EJS Templates
spelling: fix typo in transaction error messages
Matt Mackall -
r26754:e7e1528c default
parent child Browse files
Show More
@@ -410,7 +410,7 b' class transaction(object):'
410 # cleanup temporary files
410 # cleanup temporary files
411 for l, f, b, c in self._backupentries:
411 for l, f, b, c in self._backupentries:
412 if l not in self._vfsmap and c:
412 if l not in self._vfsmap and c:
413 self.report("couldn't remote %s: unknown cache location %s\n"
413 self.report("couldn't remove %s: unknown cache location %s\n"
414 % (b, l))
414 % (b, l))
415 continue
415 continue
416 vfs = self._vfsmap[l]
416 vfs = self._vfsmap[l]
@@ -421,7 +421,7 b' class transaction(object):'
421 if not c:
421 if not c:
422 raise
422 raise
423 # Abort may be raise by read only opener
423 # Abort may be raise by read only opener
424 self.report("couldn't remote %s: %s\n"
424 self.report("couldn't remove %s: %s\n"
425 % (vfs.join(b), inst))
425 % (vfs.join(b), inst))
426 self.entries = []
426 self.entries = []
427 self._writeundo()
427 self._writeundo()
@@ -434,7 +434,7 b' class transaction(object):'
434 if True:
434 if True:
435 for l, _f, b, c in self._backupentries:
435 for l, _f, b, c in self._backupentries:
436 if l not in self._vfsmap and c:
436 if l not in self._vfsmap and c:
437 self.report("couldn't remote %s: unknown cache location"
437 self.report("couldn't remove %s: unknown cache location"
438 "%s\n" % (b, l))
438 "%s\n" % (b, l))
439 continue
439 continue
440 vfs = self._vfsmap[l]
440 vfs = self._vfsmap[l]
@@ -445,7 +445,7 b' class transaction(object):'
445 if not c:
445 if not c:
446 raise
446 raise
447 # Abort may be raise by read only opener
447 # Abort may be raise by read only opener
448 self.report("couldn't remote %s: %s\n"
448 self.report("couldn't remove %s: %s\n"
449 % (vfs.join(b), inst))
449 % (vfs.join(b), inst))
450 self._backupentries = []
450 self._backupentries = []
451 self.journal = None
451 self.journal = None
@@ -477,7 +477,7 b' class transaction(object):'
477 u = ''
477 u = ''
478 else:
478 else:
479 if l not in self._vfsmap and c:
479 if l not in self._vfsmap and c:
480 self.report("couldn't remote %s: unknown cache location"
480 self.report("couldn't remove %s: unknown cache location"
481 "%s\n" % (b, l))
481 "%s\n" % (b, l))
482 continue
482 continue
483 vfs = self._vfsmap[l]
483 vfs = self._vfsmap[l]
General Comments 0
You need to be logged in to leave comments. Login now