diff options
| author | Yobmod <yobmod@gmail.com> | 2021-06-17 17:29:37 +0100 |
|---|---|---|
| committer | Yobmod <yobmod@gmail.com> | 2021-06-17 17:29:37 +0100 |
| commit | 636f77bf8d58a482df0bde8c0a6a8828950a0788 (patch) | |
| tree | e1207dbe034f82deacbb76369716779608e7056d /git/refs | |
| parent | 567c892322776756e8d0095e89f39b25b9b01bc2 (diff) | |
| parent | b0f79c58ad919e90261d1e332df79a4ad0bc40de (diff) | |
| download | gitpython-636f77bf8d58a482df0bde8c0a6a8828950a0788.tar.gz | |
fix conflict
Diffstat (limited to 'git/refs')
| -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): |
