mirror of
https://github.com/LucBerge/yt-dlp.git
synced 2025-03-17 19:57:52 +03:00
[utils] Handle HTMLParseError in extract_attributes (closes #13349)
This commit is contained in:
parent
72b409559c
commit
b4a3d461e4
2 changed files with 9 additions and 2 deletions
|
@ -916,6 +916,8 @@ class TestUtil(unittest.TestCase):
|
|||
supports_outside_bmp = False
|
||||
if supports_outside_bmp:
|
||||
self.assertEqual(extract_attributes('<e x="Smile 😀!">'), {'x': 'Smile \U0001f600!'})
|
||||
# Malformed HTML should not break attributes extraction on older Python
|
||||
self.assertEqual(extract_attributes('<mal"formed/>'), {})
|
||||
|
||||
def test_clean_html(self):
|
||||
self.assertEqual(clean_html('a:\nb'), 'a: b')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue