fix: Remove trailing comma in gerrit provider prepare_repo function

This commit is contained in:
Abhinav Kumar
2025-07-07 21:51:35 +05:30
parent 17a90c536f
commit 3f632835c5

View File

@ -103,7 +103,7 @@ def prepare_repo(url: urllib3.util.Url, project, refspec):
repo_url = (f"{url.scheme}://{url.auth}@{url.host}:{url.port}/{project}")
directory = pathlib.Path(mkdtemp())
clone(repo_url, directory),
clone(repo_url, directory)
fetch(repo_url, refspec, cwd=directory)
checkout(cwd=directory)
return directory