Explorar el Código

Merge pull request #1165 from jelmer/handle-missing

Handle missing object in iterobjects_subset
Jelmer Vernooij hace 2 años
padre
commit
173584f7d6
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      dulwich/pack.py

+ 2 - 1
dulwich/pack.py

@@ -1387,7 +1387,8 @@ class DeltaChainIterator(Generic[T]):
             except KeyError:
                 if not allow_missing:
                     raise
-            todo.add(off)
+            else:
+                todo.add(off)
         done = set()
         while todo:
             off = todo.pop()