Przeglądaj źródła

Mention the specific file that is empty.

Jelmer Vernooij 4 lat temu
rodzic
commit
bb6b7bc009
1 zmienionych plików z 1 dodań i 1 usunięć
  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)