diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2010-07-06 10:46:02 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2010-07-06 10:46:02 +0200 |
commit | 1c6d7830d9b87f47a0bfe82b3b5424a32e3164ad (patch) | |
tree | 19d9d0de030d3701b8b99f56f9d54943e734d9bc /lib/git/refs.py | |
parent | f963881e53a9f0a2746a11cb9cdfa82eb1f90d8c (diff) | |
download | gitpython-1c6d7830d9b87f47a0bfe82b3b5424a32e3164ad.tar.gz |
RevParse now generally works, but there are still some more specialized tests missing
Diffstat (limited to 'lib/git/refs.py')
-rw-r--r-- | lib/git/refs.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/git/refs.py b/lib/git/refs.py index a466e419..23d45ed0 100644 --- a/lib/git/refs.py +++ b/lib/git/refs.py @@ -808,10 +808,6 @@ class TagReference(Reference): raise ValueError( "Tag %s points to a Blob or Tree - have never seen that before" % self ) @property - def tree(self): - return self.commit.tree - - @property def tag(self): """ :return: Tag object this tag ref points to or None in case |