There was an error while loading. Please reload this page.
1 parent 11c7954 commit f0e46ceCopy full SHA for f0e46ce
1 file changed
scraper/debian.py
@@ -69,7 +69,7 @@ def extract_cves_from_tracker(html):
69
package_name.append(pkg)
70
71
for tag in soup.find_all('td'):
72
- if 'medium**' in tag or 'medium' in tag or 'low' in tag or 'low**' in tag or 'not yet assigned' in tag:
+ if 'medium' in tag or 'low' in tag or 'not yet assigned' in tag:
73
vulnerability_status.append(tag.text)
74
elif tag.find_all('span', {'class': 'red'}) and tag.text == 'high**' or tag.text == 'high':
75
0 commit comments