aboutsummaryrefslogtreecommitdiff
path: root/git/objects/tag.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2011-05-05 15:25:11 +0200
committerSebastian Thiel <byronimo@gmail.com>2011-05-05 15:25:11 +0200
commit9fc7b9a068189cc0d249d0870dfb0112ab5dec92 (patch)
tree3e185c8d5028abd4dda32c14744a771f4da088e0 /git/objects/tag.py
parent3fe1a7f87d511758adf2e56803cb3610b80c5f08 (diff)
downloadGitPython-9fc7b9a068189cc0d249d0870dfb0112ab5dec92.tar.gz
GitPython-9fc7b9a068189cc0d249d0870dfb0112ab5dec92.zip
Made most primal imports work, but stopped here as there are many more changes when doing the merge
Diffstat (limited to 'git/objects/tag.py')
-rw-r--r--git/objects/tag.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/git/objects/tag.py b/git/objects/tag.py
index a3a85eef..59b2362e 100644
--- a/git/objects/tag.py
+++ b/git/objects/tag.py
@@ -5,7 +5,7 @@
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
""" Module containing all object based types. """
from git.util import RepoAliasMixin
-from gitdb.object.tag import GitDB_TagObject
+from gitdb.object.tag import TagObject as GitDB_TagObject
__all__ = ("TagObject", )
class TagObject(GitDB_TagObject, RepoAliasMixin):