From 61dbe884a2b11a53b7a6c774da2560c1c776c4de Mon Sep 17 00:00:00 2001 From: "D.Dotsenko" Date: Fri, 29 Oct 2010 22:07:48 -0700 Subject: Fixing recursion issue introduced with submodule support --- lib/git/tree.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/git/tree.py') diff --git a/lib/git/tree.py b/lib/git/tree.py index 45f5fdcb..32f84052 100644 --- a/lib/git/tree.py +++ b/lib/git/tree.py @@ -10,7 +10,7 @@ import blob import submodule class Tree(LazyMixin): - def __init__(self, repo, id, mode=None, name=None, commit_context = None, path = ''): + def __init__(self, repo, id, mode=None, name=None, commit_context = '', path = ''): LazyMixin.__init__(self) self.repo = repo self.id = id -- cgit v1.2.1