aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAdam Janovsky2020-11-25 13:06:04 +0100
committerAdam Janovsky2020-11-25 13:06:04 +0100
commitb44b64e514581a4aa72f5284ce0ae40e1c064454 (patch)
tree47fa09deeae77696aaec6abf9547bd2bf291a5c6
parent20e0bf0b62e3a832375943095289c36e8b201533 (diff)
downloadsec-certs-b44b64e514581a4aa72f5284ce0ae40e1c064454.tar.gz
sec-certs-b44b64e514581a4aa72f5284ce0ae40e1c064454.tar.zst
sec-certs-b44b64e514581a4aa72f5284ce0ae40e1c064454.zip
hotfix, badly called method parse_algorithms
-rw-r--r--sec_certs/certificate.py2
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