diff options
author | Martin Marcher <martin@marcher.name> | 2009-10-01 18:14:21 +0200 |
---|---|---|
committer | Martin Marcher <martin@marcher.name> | 2009-10-01 18:14:21 +0200 |
commit | 2b93f2a91e0791be3ffda1f753aa6c377bcab4d3 (patch) | |
tree | 25e1d2b09ed100521e1524d21e91bb51e404fc74 /lib/git/tree.py | |
parent | ac36642ce1cde75b222e20f585ddfd240f064da2 (diff) | |
parent | bdf2e667f969e5c22985dd232fe3f107fe26e750 (diff) | |
download | gitpython-2b93f2a91e0791be3ffda1f753aa6c377bcab4d3.tar.gz |
Merge commit 'refs/merge-requests/1108' of git://gitorious.org/git-python/mainline into integration
Diffstat (limited to 'lib/git/tree.py')
-rw-r--r-- | lib/git/tree.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/git/tree.py b/lib/git/tree.py index dea10908..cfb0881c 100644 --- a/lib/git/tree.py +++ b/lib/git/tree.py @@ -45,7 +45,7 @@ class Tree(LazyMixin): ``git.Blob`` or ``git.Tree`` """ try: - mode, typ, id, name = text.expandtabs(1).split(" ", 4) + mode, typ, id, name = text.expandtabs(1).split(" ", 3) except: return None |