Browse Source

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

fix missing parameter in "did not consistently fail" msg, see #5822
TW 4 years ago
parent
commit
dfcec4e5fe
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/borg/archive.py

+ 1 - 1
src/borg/archive.py

@@ -1670,7 +1670,7 @@ class ArchiveChecker:
                         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.')