summaryrefslogtreecommitdiff
path: root/git/refs/reference.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2011-04-29 17:04:37 +0200
committerSebastian Thiel <byronimo@gmail.com>2011-04-29 17:04:37 +0200
commit3fe1a7f87d511758adf2e56803cb3610b80c5f08 (patch)
tree3808cf15466a528ee3f266eb714f380aba2d9a7f /git/refs/reference.py
parenta80f9af7d3d18a657111061dcc1104d7a8aec64b (diff)
downloadgitpython-3fe1a7f87d511758adf2e56803cb3610b80c5f08.tar.gz
Moved rev_parse code into gitdb, this probably broke pretty much here, which is still to be fixed of course
Diffstat (limited to 'git/refs/reference.py')
-rw-r--r--git/refs/reference.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/git/refs/reference.py b/git/refs/reference.py
index 135277e6..cead66ce 100644
--- a/git/refs/reference.py
+++ b/git/refs/reference.py
@@ -1,8 +1,7 @@
from gitdb.ref.reference import Reference as GitDB_Reference
-from git.util import RepoAliasMixin
__all__ = ["Reference"]
-class Reference(GitDB_Reference, RepoAliasMixin):
+class Reference(GitDB_Reference):
__slots__ = tuple()
pass