diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2010-11-23 21:14:59 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2010-11-23 21:14:59 +0100 |
commit | a21a9f6f13861ddc65671b278e93cf0984adaa30 (patch) | |
tree | 67e30aa7a870bedc238ea6eed0e991dc1a80083a /repo/base.py | |
parent | 5bd7d44ff7e51105e3e277aee109a45c42590572 (diff) | |
download | gitpython-a21a9f6f13861ddc65671b278e93cf0984adaa30.tar.gz |
Actor: Moved it from git.objects.util to git.util, adjusted all imports accordingly. Added methods to Actor to retrieve the global committer and author information
Reflog: implemented and tested append_entry method
Diffstat (limited to 'repo/base.py')
-rw-r--r-- | repo/base.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/repo/base.py b/repo/base.py index 6f401628..c8613878 100644 --- a/repo/base.py +++ b/repo/base.py @@ -6,6 +6,7 @@ from git.exc import InvalidGitRepositoryError, NoSuchPathError from git.cmd import Git +from git.util import Actor from git.refs import * from git.index import IndexFile from git.objects import * |