diff options
author | Robert Westman <robert@byteflux.io> | 2021-06-03 10:12:30 +0200 |
---|---|---|
committer | Robert Westman <robert@byteflux.io> | 2021-06-03 10:12:30 +0200 |
commit | a625d08801eacd94f373074d2c771103823954d0 (patch) | |
tree | 7872762ad89202b31a229afa8e9edab6a9d955c7 /git | |
parent | 2dbc2be846d1d00e907efbf8171c35b889ab0155 (diff) | |
download | gitpython-a625d08801eacd94f373074d2c771103823954d0.tar.gz |
Adds _common_default to build _common_path_default
Diffstat (limited to 'git')
-rw-r--r-- | git/refs/tag.py | 3 |
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): |