diff options
| author | Adam Janovsky | 2020-11-25 13:06:23 +0100 |
|---|---|---|
| committer | Adam Janovsky | 2020-11-25 13:06:23 +0100 |
| commit | 10ea349e19cd5e1efa0f4468a25790559cf91a6d (patch) | |
| tree | 1a5f2b38b65626024964b63598c3f482034b1037 | |
| parent | a068a1c9f579414599ae8c9c92851fd766392ace (diff) | |
| parent | b44b64e514581a4aa72f5284ce0ae40e1c064454 (diff) | |
| download | sec-certs-10ea349e19cd5e1efa0f4468a25790559cf91a6d.tar.gz sec-certs-10ea349e19cd5e1efa0f4468a25790559cf91a6d.tar.zst sec-certs-10ea349e19cd5e1efa0f4468a25790559cf91a6d.zip | |
Merge branch 'master' into cc-download-extract-pdf
| -rw-r--r-- | sec_certs/certificate.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sec_certs/certificate.py b/sec_certs/certificate.py index 9e8881df..f5fb3f83 100644 --- a/sec_certs/certificate.py +++ b/sec_certs/certificate.py @@ -179,7 +179,7 @@ class FIPSCertificate(Certificate): for tr in trs: tds = tr.find_all('td') found_items.append( - {'Name': tds[0].text, 'Certificate': parse_algorithms(tds[1].text)}) + {'Name': tds[0].text, 'Certificate': FIPSCertificate.parse_algorithms(tds[1].text)}) return found_items |
