summaryrefslogtreecommitdiff
path: root/gitlab/v4/objects.py
diff options
context:
space:
mode:
authorRobert Lu <robberphex@gmail.com>2017-09-11 17:23:44 +0800
committerRobert Lu <robberphex@gmail.com>2017-09-11 17:45:21 +0800
commitcc249cede601139476a53a5da23741d7413f86a5 (patch)
tree5e3bd724120c7feef5b2695da735b0f93610c57d /gitlab/v4/objects.py
parent3d8df3ccb22142c4cff86ba879882b0269f1b3b6 (diff)
downloadgitlab-cc249cede601139476a53a5da23741d7413f86a5.tar.gz
Tag can get by id
Diffstat (limited to 'gitlab/v4/objects.py')
-rw-r--r--gitlab/v4/objects.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gitlab/v4/objects.py b/gitlab/v4/objects.py
index 07a1940..714c118 100644
--- a/gitlab/v4/objects.py
+++ b/gitlab/v4/objects.py
@@ -1035,7 +1035,7 @@ class ProjectTag(ObjectDeleteMixin, RESTObject):
self.release = server_data
-class ProjectTagManager(GetFromListMixin, CreateMixin, DeleteMixin,
+class ProjectTagManager(GetMixin, CreateMixin, DeleteMixin,
RESTManager):
_path = '/projects/%(project_id)s/repository/tags'
_obj_cls = ProjectTag