From ff394db6beda8e19ef3ba3eb0a49a13c6842a666 Mon Sep 17 00:00:00 2001 From: Marc Wrobel Date: Tue, 13 Aug 2024 21:00:03 +0200 Subject: [PATCH] [chef-infra-client] Fix script (#365) Release note page and git repository where those of chef-infra-server. --- src/chef-infra-client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/chef-infra-client.py b/src/chef-infra-client.py index b271e42e..be943a89 100644 --- a/src/chef-infra-client.py +++ b/src/chef-infra-client.py @@ -9,11 +9,11 @@ More context on https://github.com/endoflife-date/endoflife.date/pull/4425#discu """ with releasedata.ProductData("chef-infra-client") as product_data: - rn_response = http.fetch_url("https://docs.chef.io/release_notes_server/") + rn_response = http.fetch_url("https://docs.chef.io/release_notes_client/") rn_soup = BeautifulSoup(rn_response.text, features="html5lib") released_versions = [h2.get('id') for h2 in rn_soup.find_all('h2', id=True) if h2.get('id')] - git = Git("https://github.com/chef/chef-server.git") + git = Git("https://github.com/chef/chef.git") git.setup(bare=True) versions = git.list_tags()