summaryrefslogtreecommitdiff
path: root/gitlab/v4/objects.py
diff options
context:
space:
mode:
authorGauvain Pocentek <gauvain@pocentek.net>2018-06-10 10:14:22 +0200
committerGauvain Pocentek <gauvain@pocentek.net>2018-06-10 10:14:22 +0200
commitb610d6629f926623344e2393a184958a83af488a (patch)
tree84ee3d1777d519285c46d95605cc440a2ec681b5 /gitlab/v4/objects.py
parentebd6217853de7e7b6a140bbdf7e8779b5a40b861 (diff)
downloadgitlab-b610d6629f926623344e2393a184958a83af488a.tar.gz
Pull mirroring doesn't return data
Diffstat (limited to 'gitlab/v4/objects.py')
-rw-r--r--gitlab/v4/objects.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gitlab/v4/objects.py b/gitlab/v4/objects.py
index 609ff14..856d74a 100644
--- a/gitlab/v4/objects.py
+++ b/gitlab/v4/objects.py
@@ -3370,7 +3370,7 @@ class Project(SaveMixin, ObjectDeleteMixin, RESTObject):
GitlabCreateError: If the server failed to perform the request
"""
path = '/projects/%d/mirror/pull' % self.get_id()
- return self.manager.gitlab.http_post(path, **kwargs)
+ self.manager.gitlab.http_post(path, **kwargs)
class ProjectManager(CRUDMixin, RESTManager):