diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2009-10-13 17:50:26 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2009-10-13 17:50:26 +0200 |
commit | 5eb0f2c241718bc7462be44e5e8e1e36e35f9b15 (patch) | |
tree | e8b61d670c5f50612791b358879c34800911a85d /test/git/test_base.py | |
parent | 86fa577e135713e56b287169d69d976cde27ac97 (diff) | |
download | gitpython-5eb0f2c241718bc7462be44e5e8e1e36e35f9b15.tar.gz |
unified name of utils module, recently it was named util and utils in different packages
Diffstat (limited to 'test/git/test_base.py')
-rw-r--r-- | test/git/test_base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/git/test_base.py b/test/git/test_base.py index aff0947d..97dfc255 100644 --- a/test/git/test_base.py +++ b/test/git/test_base.py @@ -10,7 +10,7 @@ from git import * import git.objects.base as base import git.refs as refs from itertools import chain -from git.objects.util import get_object_type_by_name +from git.objects.utils import get_object_type_by_name class TestBase(object): |