summaryrefslogtreecommitdiff
path: root/gitlab/v4/objects.py
diff options
context:
space:
mode:
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 6dfd802..da46e9a 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'}