From 0712e57f796660b9a14a994fff422eca927b66fc Mon Sep 17 00:00:00 2001 From: Andreas Zweili Date: Tue, 9 Nov 2021 10:50:24 +0100 Subject: [PATCH] fix the gitlab plugin --- todoist_interface/gitlab.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/todoist_interface/gitlab.py b/todoist_interface/gitlab.py index 3a51e1b..f6e432c 100644 --- a/todoist_interface/gitlab.py +++ b/todoist_interface/gitlab.py @@ -18,8 +18,7 @@ class GitlabAPI: url = (self.url + 'issues?assignee_username=' + assignee - + '&state=opened') - print(url) + + '&state=opened&scope=all') response = requests.get(url, headers={'PRIVATE-TOKEN': self.token}, verify=False) issues = response.json()