forked from rDrama/rDrama
1
0
Fork 0

remove unneeded instance of 'source'

master
Aevann 2024-02-25 00:53:09 +02:00
parent 03b2b750cb
commit c7751d1bba
1 changed files with 1 additions and 1 deletions

View File

@ -843,7 +843,7 @@ def complies_with_chud(obj):
#check for chud_phrase in body_html
if old_body_html:
excluded_tags = {'del','sub','sup','marquee','spoiler','lite-youtube','video','source','audio'}
excluded_tags = {'del','sub','sup','marquee','spoiler','lite-youtube','video','audio'}
soup = BeautifulSoup(old_body_html, 'lxml')
tags = soup.html.body.find_all(lambda tag: tag.name not in excluded_tags and not tag.attrs, recursive=False)
for tag in tags: