diff options
| author | Gauvain Pocentek <gauvain@pocentek.net> | 2018-06-14 19:05:17 +0200 |
|---|---|---|
| committer | Gauvain Pocentek <gauvain@pocentek.net> | 2018-06-14 19:05:17 +0200 |
| commit | e1af0a08d9fb29e67a96d67cc2609eecdfc182f7 (patch) | |
| tree | 99b96b3cf56e5633d068706fcc841b2528400d16 /gitlab/v4/objects.py | |
| parent | ebf822cef7e686d8a198dcf419c20b1bfb88dea3 (diff) | |
| download | gitlab-e1af0a08d9fb29e67a96d67cc2609eecdfc182f7.tar.gz | |
ProjectPipelineJob objects can only be listed
And they are not directly related to ProjectJob objects.
Fixes #531
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 4a401df..7231919 100644 --- a/gitlab/v4/objects.py +++ b/gitlab/v4/objects.py @@ -2415,7 +2415,7 @@ class ProjectFileManager(GetMixin, CreateMixin, UpdateMixin, DeleteMixin, return utils.response_content(result, streamed, action, chunk_size) -class ProjectPipelineJob(ProjectJob): +class ProjectPipelineJob(RESTManager): pass |
