diff options
author | Gauvain Pocentek <gauvain@pocentek.net> | 2017-09-11 14:19:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-11 14:19:05 +0200 |
commit | fd40fce913fbb3cd0e3aa2fd042e20bf1d51e9d6 (patch) | |
tree | 1bb83978e89ddcd3776bb509de311617f4d7bbd1 /gitlab/v4/objects.py | |
parent | 3d8df3ccb22142c4cff86ba879882b0269f1b3b6 (diff) | |
parent | b537b30ab1cff0e465d6e299c8e55740cca1ff85 (diff) | |
download | gitlab-fd40fce913fbb3cd0e3aa2fd042e20bf1d51e9d6.tar.gz |
Merge pull request #307 from RobberPhex/fix-tag-api
Fix tag api
Diffstat (limited to 'gitlab/v4/objects.py')
-rw-r--r-- | gitlab/v4/objects.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gitlab/v4/objects.py b/gitlab/v4/objects.py index 07a1940..353f854 100644 --- a/gitlab/v4/objects.py +++ b/gitlab/v4/objects.py @@ -1035,8 +1035,7 @@ class ProjectTag(ObjectDeleteMixin, RESTObject): self.release = server_data -class ProjectTagManager(GetFromListMixin, CreateMixin, DeleteMixin, - RESTManager): +class ProjectTagManager(NoUpdateMixin, RESTManager): _path = '/projects/%(project_id)s/repository/tags' _obj_cls = ProjectTag _from_parent_attrs = {'project_id': 'id'} |