diff options
author | Gauvain Pocentek <gauvain@pocentek.net> | 2018-05-29 06:57:36 +0200 |
---|---|---|
committer | Gauvain Pocentek <gauvain@pocentek.net> | 2018-05-29 06:57:36 +0200 |
commit | 9be50be98468e78400861718202f48eddfa83839 (patch) | |
tree | c9ad4f5bc8e1e619466153693b222a35bd7627a8 /gitlab/v4/objects.py | |
parent | fbd2010e09f0412ea52cd16bb26cf988836bc03f (diff) | |
download | gitlab-9be50be98468e78400861718202f48eddfa83839.tar.gz |
Implement the markdown rendering API
Testing will be enable when GitLab 11.0 is available.
Diffstat (limited to 'gitlab/v4/objects.py')
-rw-r--r-- | gitlab/v4/objects.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gitlab/v4/objects.py b/gitlab/v4/objects.py index 65134db..2def952 100644 --- a/gitlab/v4/objects.py +++ b/gitlab/v4/objects.py @@ -1981,8 +1981,8 @@ class ProjectLabelManager(ListMixin, CreateMixin, UpdateMixin, DeleteMixin, **kwargs: Extra options to send to the Gitlab server (e.g. sudo) Raises: - GitlabAuthenticationError: If authentication is not correct. - GitlabDeleteError: If the server cannot perform the request. + GitlabAuthenticationError: If authentication is not correct + GitlabDeleteError: If the server cannot perform the request """ self.gitlab.http_delete(self.path, query_data={'name': name}, **kwargs) |