summaryrefslogtreecommitdiff
path: root/gitlab/v4/objects.py
diff options
context:
space:
mode:
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):