Skip to content

Commit b9d841d

Browse files
committed
fixed after merge commit
1 parent 56710f1 commit b9d841d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

git_logger.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,13 +68,13 @@ def get_next_client(self) -> tuple[IRepositoryAPI, str]:
6868
def get_next_binded_repo(clients: Clients, repositories: list[str]):
6969
for repo_name in repositories:
7070
try:
71-
cur_client = clients.get_next_client()
72-
repo = cur_client['client'].get_repository(repo_name)
71+
client, token = clients.get_next_client()
72+
repo = client.get_repository(repo_name)
7373
except Exception as err:
7474
print(f'get_next_binded_repo(): error {err}')
7575
print(f'get_next_binded_repo(): failed to load repository "{repo_name}"')
7676
else:
77-
yield cur_client['client'], repo, cur_client['token']
77+
yield client, repo, token
7878

7979

8080
def get_assignee_story(git_object, client, token, repository):

0 commit comments

Comments
 (0)