summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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):