summaryrefslogtreecommitdiff
path: root/gitlab/objects.py
diff options
context:
space:
mode:
authorGauvain Pocentek <gauvain@pocentek.net>2016-03-22 18:10:13 +0100
committerGauvain Pocentek <gauvain@pocentek.net>2016-03-22 18:10:13 +0100
commitccbea3f59a1be418ea5adf90d25dbfb49f72dfde (patch)
tree03384814f60fae360f7dfb01cacc09c05be39cc1 /gitlab/objects.py
parent43e8a2a82deff4c95e156fc951f88ff6e95cf7b8 (diff)
downloadgitlab-ccbea3f59a1be418ea5adf90d25dbfb49f72dfde.tar.gz
minor docs fixes
Diffstat (limited to 'gitlab/objects.py')
-rw-r--r--gitlab/objects.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/gitlab/objects.py b/gitlab/objects.py
index 3b8a467..56cec38 100644
--- a/gitlab/objects.py
+++ b/gitlab/objects.py
@@ -1569,7 +1569,7 @@ class ProjectManager(BaseManager):
**kwargs: Additional arguments to send to GitLab.
Returns:
- list(Project): A list of matching projects.
+ list(gitlab.Gitlab.Project): A list of matching projects.
"""
return self.gitlab._raw_list("/projects/search/" + query, Project,
**kwargs)
@@ -1582,7 +1582,7 @@ class ProjectManager(BaseManager):
**kwargs: Additional arguments to send to GitLab.
Returns:
- list(Project): The list of projects.
+ list(gitlab.Gitlab.Project): The list of projects.
"""
return self.gitlab._raw_list("/projects/all", Project, **kwargs)
@@ -1594,7 +1594,7 @@ class ProjectManager(BaseManager):
**kwargs: Additional arguments to send to GitLab.
Returns:
- list(Project): The list of owned projects.
+ list(gitlab.Gitlab.Project): The list of owned projects.
"""
return self.gitlab._raw_list("/projects/owned", Project, **kwargs)