1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2024-12-25 09:19:31 +00:00

Merge pull request #5843 from braewoods/consistently-fail-msg

fix missing parameter in "did not consistently fail" msg, see #5822
This commit is contained in:
TW 2021-06-16 15:07:08 +02:00 committed by GitHub
commit dfcec4e5fe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1670,7 +1670,7 @@ def verify_data(self):
self.repository.delete(defect_chunk)
logger.debug('chunk %s deleted.', bin_to_hex(defect_chunk))
else:
logger.warning('chunk %s not deleted, did not consistently fail.')
logger.warning('chunk %s not deleted, did not consistently fail.', bin_to_hex(defect_chunk))
else:
logger.warning('Found defect chunks. With --repair, they would get deleted, so affected '
'files could get repaired then and maybe healed later.')