summaryrefslogtreecommitdiff
path: root/lib/git/tree.py
diff options
context:
space:
mode:
authorD.Dotsenko <dotsa@hotmail.com>2010-10-29 22:07:48 -0700
committerD.Dotsenko <dotsa@hotmail.com>2010-10-29 22:07:48 -0700
commit61dbe884a2b11a53b7a6c774da2560c1c776c4de (patch)
tree97df9f52e0befa8432b524aedcf571c501b23e5f /lib/git/tree.py
parentcfd2121eda5fadd18fba6819f90efb8868fad14a (diff)
downloadgitpython-61dbe884a2b11a53b7a6c774da2560c1c776c4de.tar.gz
Fixing recursion issue introduced with submodule support
Diffstat (limited to 'lib/git/tree.py')
-rw-r--r--lib/git/tree.py2
1 files changed, 1 insertions, 1 deletions
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