From cfd2121eda5fadd18fba6819f90efb8868fad14a Mon Sep 17 00:00:00 2001 From: "D. Dotsenko" Date: Wed, 20 Oct 2010 22:41:52 -0700 Subject: Added submodule type and handling through Tree listing. --- lib/git/commit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/git/commit.py') diff --git a/lib/git/commit.py b/lib/git/commit.py index b074d3a8..9a9a77ad 100644 --- a/lib/git/commit.py +++ b/lib/git/commit.py @@ -71,7 +71,7 @@ class Commit(LazyMixin): if parents is not None: self.parents = [Commit(repo, p) for p in parents] if tree is not None: - self.tree = Tree(repo, id=tree) + self.tree = Tree(repo, id=tree, commit_context = self.id) def __bake__(self): """ -- cgit v1.2.1