diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2011-05-30 20:10:47 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2011-05-30 20:10:47 +0200 |
commit | 7fab60c596cdd2588f9c7b2b4eb9f93f8736b915 (patch) | |
tree | 7e35823a1fd9e792d33481fd9740e280c67d9165 /git/objects/commit.py | |
parent | c192638aae09c1b5c087d67cc99dd4c7ec4ed916 (diff) | |
download | gitpython-7fab60c596cdd2588f9c7b2b4eb9f93f8736b915.tar.gz |
Fixed all of the object tests, except for the submodule handling which needs more work as the amount of submodules changed in fact. Maybe I should just generate a test repository with gitpython as submodule to get the recursion depth required to satisfy the test
Diffstat (limited to 'git/objects/commit.py')
-rw-r--r-- | git/objects/commit.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/git/objects/commit.py b/git/objects/commit.py index 45a821a1..c201780c 100644 --- a/git/objects/commit.py +++ b/git/objects/commit.py @@ -14,7 +14,8 @@ from git.util import ( Actor, RepoAliasMixin, Iterable, - Actor + Actor, + Stats ) from util import ( |