2
0
Эх сурвалжийг харах

Make sure mode is initialized.

Jelmer Vernooij 15 жил өмнө
parent
commit
2ae0459169

+ 1 - 0
dulwich/object_store.py

@@ -623,6 +623,7 @@ def tree_lookup_path(lookup_obj, root_sha, path):
     """
     parts = path.split("/")
     sha = root_sha
+    mode = None
     for p in parts:
         obj = lookup_obj(sha)
         if type(obj) is not Tree: