diff options
Diffstat (limited to 'lib/git/objects/util.py')
-rw-r--r-- | lib/git/objects/util.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/git/objects/util.py b/lib/git/objects/util.py index 81544e26..a9e1143c 100644 --- a/lib/git/objects/util.py +++ b/lib/git/objects/util.py @@ -276,7 +276,8 @@ class Traversable(object): raise NotImplementedError("To be implemented in subclass") def list_traverse(self, *args, **kwargs): - """:return: IterableList with the results of the traversal as produced by + """ + :return: IterableList with the results of the traversal as produced by traverse()""" out = IterableList(self._id_attribute_) out.extend(self.traverse(*args, **kwargs)) |