diff options
author | Nejc Habjan <hab.nejc@gmail.com> | 2021-06-01 20:06:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-01 20:06:58 +0200 |
commit | d981956a8782d3dc8210498e6b67af7a71abefa2 (patch) | |
tree | 5745f99575be596804e7e23e44b7bfce56a1965e /gitlab/client.py | |
parent | 55ae61a563ed6063aa3c8bcb9339c607bee35227 (diff) | |
parent | 4e690c256fc091ddf1649e48dbbf0b40cc5e6b95 (diff) | |
download | gitlab-d981956a8782d3dc8210498e6b67af7a71abefa2.tar.gz |
Merge pull request #1478 from benjamb/benbrown/keep-containers
Optionally keep containers after running integration tests
Diffstat (limited to 'gitlab/client.py')
-rw-r--r-- | gitlab/client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gitlab/client.py b/gitlab/client.py index c0dc489..d19acfb 100644 --- a/gitlab/client.py +++ b/gitlab/client.py @@ -787,7 +787,7 @@ class Gitlab(object): ) from e def http_delete(self, path: str, **kwargs: Any) -> requests.Response: - """Make a PUT request to the Gitlab server. + """Make a DELETE request to the Gitlab server. Args: path (str): Path or full URL to query ('/projects' or |