Skip to content

Commit

Permalink
fix error checked by pylint
Browse files Browse the repository at this point in the history
s1mple-child committed Jan 12, 2024
1 parent bfd1462 commit 67b5372
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gitlab/migrate_from_gitlab_2gerrit.py
Original file line number Diff line number Diff line change
@@ -318,7 +318,7 @@ def find_group_in_gitlab(gitlab_ip, group_name):
:return: group_id: group id of given group
"""
# set gitlab access token
gitlab_access_token = set_gitlab_access_token(gitlab_ip)
gitlab_access_token = set_access_token_gitlab(gitlab_ip)
# request via gitlab REST API
group_finding_response = requests.get('http://' + gitlab_ip + '/api/v4/groups?private_token=' + gitlab_access_token
+ '&search=' + group_name).text

0 comments on commit 67b5372

Please sign in to comment.