瀏覽代碼

Presence in the index doesn't imply presence on disk.

Jelmer Vernooij 8 年之前
父節點
當前提交
d558cb7c08
共有 1 個文件被更改,包括 6 次插入2 次删除
  1. 6 2
      dulwich/index.py

+ 6 - 2
dulwich/index.py

@@ -389,8 +389,12 @@ def changes_from_tree(names, lookup_entry, object_store, tree,
 
     # Mention added files
     for name in other_names:
-        (other_sha, other_mode) = lookup_entry(name)
-        yield ((None, name), (None, other_mode), (None, other_sha))
+        try:
+            (other_sha, other_mode) = lookup_entry(name)
+        except KeyError:
+            pass
+        else:
+            yield ((None, name), (None, other_mode), (None, other_sha))
 
 
 def index_entry_from_stat(stat_val, hex_sha, flags, mode=None):