diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2009-10-13 21:26:19 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2009-10-13 21:26:19 +0200 |
commit | 6acec357c7609fdd2cb0f5fdb1d2756726c7fe98 (patch) | |
tree | c7cb258ba85691082b7f7e95fa7f187e1f37405a /lib/git/utils.py | |
parent | f4fa1cb3c3e84cad8b74edb28531d2e27508be26 (diff) | |
download | gitpython-6acec357c7609fdd2cb0f5fdb1d2756726c7fe98.tar.gz |
renamed find_all to list_all, changed commit to use iterable interface in preparation for command changes
Diffstat (limited to 'lib/git/utils.py')
-rw-r--r-- | lib/git/utils.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/git/utils.py b/lib/git/utils.py index 96ec15b9..f84c247d 100644 --- a/lib/git/utils.py +++ b/lib/git/utils.py @@ -75,13 +75,13 @@ class Iterable(object): Returns: list(Item,...) list of item instances """ - return list(cls.iter_items, repo, *args, **kwargs) + return list(cls.iter_items(repo, *args, **kwargs)) @classmethod def iter_items(cls, repo, *args, **kwargs): """ - For more information about the arguments, see find_all + For more information about the arguments, see list_items Return: iterator yielding Items """ |