##// END OF EJS Templates
git: pass `id` attribute of `pygit2.Tree` object...
Connor Sheehan -
r46089:73a5aa5e default
parent child Browse files
Show More
@@ -322,7 +322,8 b' class memgittreemanifestctx(object):'
322 322 for part in comps:
323 323 parent = trees[full]
324 324 try:
325 new = self._repo[parent[pycompat.fsdecode(part)]]
325 parent_tree_id = parent[pycompat.fsdecode(part)].id
326 new = self._repo[parent_tree_id]
326 327 except KeyError:
327 328 # new directory
328 329 new = None
General Comments 0
You need to be logged in to leave comments. Login now