浏览代码

Fix Blob._deserialize.

Jelmer Vernooij 15 年之前
父节点
当前提交
2c2265b3ec
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      dulwich/objects.py

+ 1 - 1
dulwich/objects.py

@@ -466,7 +466,7 @@ class Blob(ShaFile):
         return self._chunked_text
 
     def _deserialize(self, chunks):
-        return "".join(chunks)
+        self._chunked_text = chunks
 
     chunked = property(_get_chunked, _set_chunked,
         "The text within the blob object, as chunks (not necessarily lines).")