소스 검색

Fix commit_index.

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

+ 1 - 1
dulwich/index.py

@@ -258,4 +258,4 @@ def commit_tree(object_store, blobs):
 
 
 def commit_index(object_store, index):
-    return commit_tree(object_store, index.blobs())
+    return commit_tree(object_store, index.iterblobs())