diff options
| author | J08nY | 2024-07-19 17:12:58 +0200 |
|---|---|---|
| committer | J08nY | 2024-07-19 17:12:58 +0200 |
| commit | 958effe4b47bde59bca32eb64f567365590ba24a (patch) | |
| tree | cf494c98c4ae06d22c1ff9dd5632bd84f099bfab /src | |
| parent | e42f5ca573a971af80c332453341e7ff84c6b09b (diff) | |
| download | sec-certs-958effe4b47bde59bca32eb64f567365590ba24a.tar.gz sec-certs-958effe4b47bde59bca32eb64f567365590ba24a.tar.zst sec-certs-958effe4b47bde59bca32eb64f567365590ba24a.zip | |
Fix Spain CC scheme download.
Diffstat (limited to 'src')
| -rw-r--r-- | src/sec_certs/sample/cc_scheme.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sec_certs/sample/cc_scheme.py b/src/sec_certs/sample/cc_scheme.py index 1af70e76..7fb9e18e 100644 --- a/src/sec_certs/sample/cc_scheme.py +++ b/src/sec_certs/sample/cc_scheme.py @@ -1306,7 +1306,7 @@ def get_spain_certified() -> list[dict[str, Any]]: "product_link": urljoin(constants.CC_SPAIN_BASE_URL, tds[0].find("a")["href"]), "category": sns(tds[1].text), "manufacturer": sns(tds[2].text), - "certification_date": sns(tds[3].find("td", class_="djc_value").text), + "certification_date": sns(tds[3].text), } results.append(cert) return results |
