Skip to content

Commit

Permalink
fix missing parameter in "did not consistently fail" msg, see borgbac…
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasWaldmann committed Jun 5, 2021
1 parent 6b35dc4 commit 30a93d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/borg/archive.py
Original file line number Diff line number Diff line change
Expand Up @@ -1353,7 +1353,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.')
Expand Down

0 comments on commit 30a93d5

Please sign in to comment.