##// 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 410 # cleanup temporary files
411 411 for l, f, b, c in self._backupentries:
412 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 414 % (b, l))
415 415 continue
416 416 vfs = self._vfsmap[l]
@@ -421,7 +421,7 b' class transaction(object):'
421 421 if not c:
422 422 raise
423 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 425 % (vfs.join(b), inst))
426 426 self.entries = []
427 427 self._writeundo()
@@ -434,7 +434,7 b' class transaction(object):'
434 434 if True:
435 435 for l, _f, b, c in self._backupentries:
436 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 438 "%s\n" % (b, l))
439 439 continue
440 440 vfs = self._vfsmap[l]
@@ -445,7 +445,7 b' class transaction(object):'
445 445 if not c:
446 446 raise
447 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 449 % (vfs.join(b), inst))
450 450 self._backupentries = []
451 451 self.journal = None
@@ -477,7 +477,7 b' class transaction(object):'
477 477 u = ''
478 478 else:
479 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 481 "%s\n" % (b, l))
482 482 continue
483 483 vfs = self._vfsmap[l]
General Comments 0
You need to be logged in to leave comments. Login now