From d630d722dfa6a8546bda93bd3e640d6d851fc4fb Mon Sep 17 00:00:00 2001 From: zhanglei Date: Thu, 12 Sep 2024 16:34:31 +0800 Subject: [PATCH] update:git.py --- metagpt/tools/libs/git.py | 1 + 1 file changed, 1 insertion(+) diff --git a/metagpt/tools/libs/git.py b/metagpt/tools/libs/git.py index 0f68418eb..8a3e464f0 100644 --- a/metagpt/tools/libs/git.py +++ b/metagpt/tools/libs/git.py @@ -79,6 +79,7 @@ async def git_create_pull( colon_index = parsed_url.netloc.find(":") at_index = parsed_url.netloc.find("@") access_token = parsed_url.netloc[colon_index + 1 : at_index] + break return await GitRepository.create_pull( base=base, head=head,