diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2010-06-14 17:25:05 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2010-06-14 17:25:05 +0200 |
commit | c9dbf201b4f0b3c2b299464618cb4ecb624d272c (patch) | |
tree | b0267c9f527682c2c420d00350e98f7e7bbe9969 /lib/git/repo.py | |
parent | 38b3cfb9b24a108e0720f7a3f8d6355f7e0bb1a9 (diff) | |
download | gitpython-c9dbf201b4f0b3c2b299464618cb4ecb624d272c.tar.gz |
Moved small types that had their own module into the utils module
Diffstat (limited to 'lib/git/repo.py')
-rw-r--r-- | lib/git/repo.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/git/repo.py b/lib/git/repo.py index 4442a79e..85f12300 100644 --- a/lib/git/repo.py +++ b/lib/git/repo.py @@ -6,7 +6,7 @@ from errors import InvalidGitRepositoryError, NoSuchPathError from cmd import Git -from actor import Actor +from objects import Actor from refs import * from index import IndexFile from objects import * |