aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorJ08nY2024-07-19 17:12:58 +0200
committerJ08nY2024-07-19 17:12:58 +0200
commit958effe4b47bde59bca32eb64f567365590ba24a (patch)
treecf494c98c4ae06d22c1ff9dd5632bd84f099bfab /src
parente42f5ca573a971af80c332453341e7ff84c6b09b (diff)
downloadsec-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.py2
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