From 3fe1a7f87d511758adf2e56803cb3610b80c5f08 Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Fri, 29 Apr 2011 17:04:37 +0200 Subject: Moved rev_parse code into gitdb, this probably broke pretty much here, which is still to be fixed of course --- git/refs/remote.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'git/refs/remote.py') diff --git a/git/refs/remote.py b/git/refs/remote.py index ae6f626d..04d0d5dd 100644 --- a/git/refs/remote.py +++ b/git/refs/remote.py @@ -1,11 +1,10 @@ import os from gitdb.ref.remote import RemoteReference as GitDB_RemoteReference -from git.util import RepoAliasMixin __all__ = ["RemoteReference"] -class RemoteReference(GitDB_RemoteReference, RepoAliasMixin): +class RemoteReference(GitDB_RemoteReference): """Represents a reference pointing to a remote head.""" __slots__ = tuple() -- cgit v1.2.1