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 /lib/git/refs.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 'lib/git/refs.py')
-rw-r--r-- | lib/git/refs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/git/refs.py b/lib/git/refs.py index bc5cc005..bdfff6f4 100644 --- a/lib/git/refs.py +++ b/lib/git/refs.py @@ -7,7 +7,7 @@ Module containing all ref based objects """ from objects.base import Object -from objects.util import get_object_type_by_name +from objects.utils import get_object_type_by_name from utils import LazyMixin class Ref(LazyMixin): |