From 8e55a3c85f3537e2be1032bf7d28080a4319ec89 Mon Sep 17 00:00:00 2001 From: Kris Gambirazzi Date: Wed, 27 Mar 2019 12:20:30 +0000 Subject: [PATCH] Use NoUpdateMixin for now --- gitlab/v4/objects.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitlab/v4/objects.py b/gitlab/v4/objects.py index 6dfd80248..da46e9aef 100644 --- a/gitlab/v4/objects.py +++ b/gitlab/v4/objects.py @@ -1997,7 +1997,7 @@ class ProjectRelease(RESTObject): _id_attr = 'tag_name' -class ProjectReleaseManager(CRUDMixin, RESTManager): +class ProjectReleaseManager(NoUpdateMixin, RESTManager): _path = '/projects/%(project_id)s/releases' _obj_cls = ProjectRelease _from_parent_attrs = {'project_id': 'id'}