Przeglądaj źródła

Fix commit_index.

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