1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-20 20:19:33 +00:00

ignore parsing errors in get_element_by_id()

This commit is contained in:
Filippo Valsorda 2012-04-10 23:08:53 +02:00
parent 781cc523af
commit 7a8501e307
2 changed files with 8 additions and 2 deletions

View file

@ -252,7 +252,10 @@ class IDParser(HTMLParser.HTMLParser):
def get_element_by_id(id, html): def get_element_by_id(id, html):
"""Return the content of the tag with the specified id in the passed HTML document""" """Return the content of the tag with the specified id in the passed HTML document"""
parser = IDParser(id) parser = IDParser(id)
parser.loads(html) try:
parser.loads(html)
except HTMLParser.HTMLParseError:
pass
return parser.get_result() return parser.get_result()

View file

@ -252,7 +252,10 @@ class IDParser(HTMLParser.HTMLParser):
def get_element_by_id(id, html): def get_element_by_id(id, html):
"""Return the content of the tag with the specified id in the passed HTML document""" """Return the content of the tag with the specified id in the passed HTML document"""
parser = IDParser(id) parser = IDParser(id)
parser.loads(html) try:
parser.loads(html)
except HTMLParser.HTMLParseError:
pass
return parser.get_result() return parser.get_result()