summaryrefslogtreecommitdiff
path: root/lib/git/refs.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2009-10-13 17:50:26 +0200
committerSebastian Thiel <byronimo@gmail.com>2009-10-13 17:50:26 +0200
commit5eb0f2c241718bc7462be44e5e8e1e36e35f9b15 (patch)
treee8b61d670c5f50612791b358879c34800911a85d /lib/git/refs.py
parent86fa577e135713e56b287169d69d976cde27ac97 (diff)
downloadgitpython-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.py2
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):