mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-31 19:42:26 +00:00
build_manifest.py: avoid duplicate / in requests
This commit is contained in:
parent
76d38faf20
commit
39e2ddf788
1 changed files with 1 additions and 1 deletions
|
@ -140,7 +140,7 @@ def test_get_project_branch():
|
|||
# Documentation: https://docs.gitlab.com/ce/api/projects.html#list-user-projects
|
||||
def search_user_namespace(user: str, project: str) -> Dict[str, str]:
|
||||
print(f"Searching for {project} project in @{user} user's namespace")
|
||||
path = f"/users/{user}/projects?search={project}"
|
||||
path = f"users/{user}/projects?search={project}"
|
||||
return request_wrap(path)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue