Skip to content
This repository was archived by the owner on Nov 4, 2020. It is now read-only.

Commit 8394cb6

Browse files
author
Itxaka Serrano
committed
Fix a small problem with getlabels
1 parent 024e73b commit 8394cb6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gitlab/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1792,7 +1792,7 @@ def getlabels(self, project_id):
17921792
:param project_id: The ID of a project
17931793
:return: list of the labels
17941794
"""
1795-
request = requests.get("{0}/{1}/labels".format(self.projects_url, project_id), params=data,
1795+
request = requests.get("{0}/{1}/labels".format(self.projects_url, project_id),
17961796
verify=self.verify_ssl, headers=self.headers)
17971797

17981798
if request.status_code == 200:

0 commit comments

Comments
 (0)