소스 검색

fix missing parameter in "did not consistently fail" msg, see #5822

Thomas Waldmann 4 년 전
부모
커밋
30a93d56fc
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/borg/archive.py

+ 1 - 1
src/borg/archive.py

@@ -1353,7 +1353,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.')