diff options
| author | Samuel Johnson <[email protected]> | 2026-01-10 00:47:08 -0500 |
|---|---|---|
| committer | Samuel Johnson <[email protected]> | 2026-01-10 00:47:08 -0500 |
| commit | 88feb9f5e9444c9f8f27d2b74fa1fa30876d7385 (patch) | |
| tree | e8db8a22135d001e62aac4e5a8d9be94b178b91b | |
| parent | 1e983de7023b97a443b608c529bc1c9a424e5346 (diff) | |
Fix class selector
| -rw-r--r-- | src/scrape_lexicanum.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scrape_lexicanum.py b/src/scrape_lexicanum.py index 34e9726..a873f43 100644 --- a/src/scrape_lexicanum.py +++ b/src/scrape_lexicanum.py @@ -59,7 +59,7 @@ def get_page_content(config, page_name): for unwanted in parser_output.select("table.Anpassen"): unwanted.decompose() - image = parser_output.find("a", {"class": "image"}) + image = parser_output.find("a.image") image_link = None if image: if image.contents[0]: |
