summaryrefslogtreecommitdiff
path: root/git/refs
diff options
context:
space:
mode:
authorYobmod <yobmod@gmail.com>2021-06-17 17:38:42 +0100
committerYobmod <yobmod@gmail.com>2021-06-17 17:38:42 +0100
commit3a84459c6a5a1d8a81e4a51189091ef135e1776e (patch)
treee1207dbe034f82deacbb76369716779608e7056d /git/refs
parentdf39446bb7b90ab9436fa3a76f6d4182c2a47da2 (diff)
parent636f77bf8d58a482df0bde8c0a6a8828950a0788 (diff)
downloadgitpython-3a84459c6a5a1d8a81e4a51189091ef135e1776e.tar.gz
add travis
Diffstat (limited to 'git/refs')
-rw-r--r--git/refs/tag.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/git/refs/tag.py b/git/refs/tag.py
index 8f88c522..4d84239e 100644
--- a/git/refs/tag.py
+++ b/git/refs/tag.py
@@ -18,7 +18,8 @@ class TagReference(Reference):
print(tagref.tag.message)"""
__slots__ = ()
- _common_path_default = "refs/tags"
+ _common_default = "tags"
+ _common_path_default = Reference._common_path_default + "/" + _common_default
@property
def commit(self):