diff options
author | Kris Gambirazzi <Kris.Gambirazzi@perkbox.com> | 2019-03-27 12:20:30 +0000 |
---|---|---|
committer | Kris Gambirazzi <Kris.Gambirazzi@perkbox.com> | 2019-03-27 12:20:30 +0000 |
commit | 8e55a3c85f3537e2be1032bf7d28080a4319ec89 (patch) | |
tree | aeec7492c63936d7a5f1204298b2231db21bdea2 /gitlab/v4/objects.py | |
parent | 3680545a01513ed044eb888151d2e2c635cea255 (diff) | |
download | gitlab-8e55a3c85f3537e2be1032bf7d28080a4319ec89.tar.gz |
Use NoUpdateMixin for now
Diffstat (limited to 'gitlab/v4/objects.py')
-rw-r--r-- | gitlab/v4/objects.py | 2 |
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'} |