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:
commit
dfcec4e5fe
1 changed files with 1 additions and 1 deletions
|
@ -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.')
|
||||
|
|
Loading…
Reference in a new issue