From 589f7a400e5b613294a203e3c781be05ba5d73bb Mon Sep 17 00:00:00 2001 From: HENRY Florian Date: Sun, 28 Aug 2022 13:36:06 +0200 Subject: [PATCH] fix: bad URL in raw.githubusercontent.com (#1363) --- bench/utils/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bench/utils/app.py b/bench/utils/app.py index 84b6df18..d313fae1 100644 --- a/bench/utils/app.py +++ b/bench/utils/app.py @@ -185,7 +185,7 @@ def get_required_deps(org, name, branch, deps="hooks.py"): res = requests.get(url=git_api_url, params=params).json() if "message" in res: - git_url = f"https://raw.githubusercontent.com/{org}/{name}/{params['branch']}/{deps}" + git_url = f"https://raw.githubusercontent.com/{org}/{name}/{params['branch']}/{name}/{deps}" return requests.get(git_url).text return base64.decodebytes(res["content"].encode()).decode()