summaryrefslogtreecommitdiff
path: root/lib/git/objects/tree.py
diff options
context:
space:
mode:
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))