summaryrefslogtreecommitdiff
path: root/lib/git/objects/tree.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2010-05-04 18:00:14 +0200
committerSebastian Thiel <byronimo@gmail.com>2010-05-04 18:00:14 +0200
commit143b927307d46ccb8f1cc095739e9625c03c82ff (patch)
tree1f2474b64f52183d0c8ed73eee93dbf12ca2e1dd /lib/git/objects/tree.py
parent22a0289972b365b7912340501b52ca3dd98be289 (diff)
downloadgitpython-143b927307d46ccb8f1cc095739e9625c03c82ff.tar.gz
TODO: Removed all entries but left a mesage about where to find the issuee on lighthouse.
README/intro.rst: added information about the new repository at github tree: added marker to indicate that submodules would have to be returned there
Diffstat (limited to 'lib/git/objects/tree.py')
-rw-r--r--lib/git/objects/tree.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/git/objects/tree.py b/lib/git/objects/tree.py
index 5bd29a2a..a9e60981 100644
--- a/lib/git/objects/tree.py
+++ b/lib/git/objects/tree.py
@@ -132,7 +132,7 @@ class Tree(base.IndexObject, diff.Diffable, utils.Traversable):
elif type_id == self.tree_id:
yield Tree(self.repo, hexsha, mode, path)
elif type_id == self.commit_id:
- # todo
+ # submodules
yield None
else:
raise TypeError( "Unknown type found in tree data %i for path '%s'" % (type_id, path))