##// END OF EJS Templates
transaction: use the right location when cleaning up backup file (issue4479)...
Pierre-Yves David -
r23727:987ef74d default
parent child Browse files
Show More
@@ -397,7 +397,7 b' class transaction(object):'
397 self.opener.unlink(self.journal)
397 self.opener.unlink(self.journal)
398 if self.opener.isfile(self._backupjournal):
398 if self.opener.isfile(self._backupjournal):
399 self.opener.unlink(self._backupjournal)
399 self.opener.unlink(self._backupjournal)
400 for _l, _f, b, c in self._backupentries:
400 for l, _f, b, c in self._backupentries:
401 if l not in self._vfsmap and c:
401 if l not in self._vfsmap and c:
402 self.report("couldn't remote %s: unknown cache location"
402 self.report("couldn't remote %s: unknown cache location"
403 "%s\n" % (b, l))
403 "%s\n" % (b, l))
General Comments 0
You need to be logged in to leave comments. Login now