From a625d08801eacd94f373074d2c771103823954d0 Mon Sep 17 00:00:00 2001 From: Robert Westman Date: Thu, 3 Jun 2021 10:12:30 +0200 Subject: Adds _common_default to build _common_path_default --- git/refs/tag.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'git/refs') 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): -- cgit v1.2.1