diff options
author | Nejc Habjan <hab.nejc@gmail.com> | 2021-09-02 23:34:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-02 23:34:04 +0200 |
commit | 557c7d2d2057e90a8c3f9f25d3f2ca2ec2bece93 (patch) | |
tree | e81c0ed6a01370f426ef236567b3c46ec9d6ac80 | |
parent | bdb6cb932774890752569ebbc86509e011728ae6 (diff) | |
parent | acabf63c821745bd7e43b7cd3d799547b65e9ed0 (diff) | |
download | gitlab-557c7d2d2057e90a8c3f9f25d3f2ca2ec2bece93.tar.gz |
Merge pull request #1585 from JohnVillalovos/jlvillal/archive_type
docs: correct documented return type
-rw-r--r-- | gitlab/v4/objects/repositories.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gitlab/v4/objects/repositories.py b/gitlab/v4/objects/repositories.py index 5a56a2d..de5f0d2 100644 --- a/gitlab/v4/objects/repositories.py +++ b/gitlab/v4/objects/repositories.py @@ -180,7 +180,7 @@ class RepositoryMixin: GitlabListError: If the server failed to perform the request Returns: - str: The binary data of the archive + bytes: The binary data of the archive """ path = "/projects/%s/repository/archive" % self.get_id() query_data = {} |