mirror of
https://github.com/qodo-ai/pr-agent.git
synced 2025-12-12 02:45:18 +00:00
Fix issue in the GitLab provider
Signed-off-by: Emmanuel Ferdman <emmanuelferdman@gmail.com>
This commit is contained in:
parent
395e5a2e04
commit
807ce6ec65
1 changed files with 1 additions and 1 deletions
|
|
@ -49,7 +49,7 @@ class GitLabProvider(GitProvider):
|
||||||
if auth_method == "oauth_token":
|
if auth_method == "oauth_token":
|
||||||
self.gl = gitlab.Gitlab(
|
self.gl = gitlab.Gitlab(
|
||||||
url=gitlab_url,
|
url=gitlab_url,
|
||||||
oauth_token=gitlab_access_token
|
oauth_token=gitlab_access_token,
|
||||||
ssl_verify=ssl_verify
|
ssl_verify=ssl_verify
|
||||||
)
|
)
|
||||||
else: # private_token
|
else: # private_token
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue