From 5e87c79ad7156a142240a1fdf060c170623c7268 Mon Sep 17 00:00:00 2001 From: Bryan Hilbert Date: Fri, 20 Dec 2024 09:00:40 -0500 Subject: [PATCH] Fix program type info from new link --- jwql/website/apps/jwql/data_containers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jwql/website/apps/jwql/data_containers.py b/jwql/website/apps/jwql/data_containers.py index 2eb0a00fd..c8bb57fff 100644 --- a/jwql/website/apps/jwql/data_containers.py +++ b/jwql/website/apps/jwql/data_containers.py @@ -2084,7 +2084,7 @@ def text_scrape(prop_id): links = html.findAll('a') - proposal_type = links[0].contents[0] + proposal_type = links[3].contents[0] program_meta['prop_type'] = proposal_type