Sfoglia il codice sorgente

Mention the specific file that is empty.

Jelmer Vernooij 4 anni fa
parent
commit
bb6b7bc009
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  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)