Skip to content

Commit

Permalink
find_git_parents: Fix githelper URL template
Browse files Browse the repository at this point in the history
Signed-off-by: Zack Cerza <[email protected]>
  • Loading branch information
zmc committed Jul 19, 2024
1 parent 2d00246 commit e9a26ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion teuthology/suite/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ def refresh():
project, resp.content.decode())

def get_sha1s(project, committish, count):
url = f"base_url/{project}.git/history?committish={committish}&count={count}"
url = f"{base_url}/{project}.git/history?committish={committish}&count={count}"
log.info(f"Looking for parent commits: {url}")
resp = requests.get(url)
resp.raise_for_status()
Expand Down

0 comments on commit e9a26ec

Please sign in to comment.