소스 검색

Mention the specific file that is empty.

Jelmer Vernooij 4 년 전
부모
커밋
bb6b7bc009
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      dulwich/objects.py

+ 1 - 1
dulwich/objects.py

@@ -382,7 +382,7 @@ class ShaFile(object):
     def _parse_file(cls, f):
         map = f.read()
         if not map:
-            raise EmptyFileException('Corrupted empty file detected')
+            raise EmptyFileException('Corrupted empty file %r detected' % f)
 
         if cls._is_legacy_object(map):
             obj = cls._parse_legacy_object_header(map, f)