瀏覽代碼

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)