aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFilippo Valsorda <filippo.valsorda@gmail.com>2012-04-10 23:08:53 +0200
committerFilippo Valsorda <filippo.valsorda@gmail.com>2012-04-10 23:08:53 +0200
commit7a8501e307ec1283aeacb03b471b5509b8c92854 (patch)
tree91f702401ca4c62406ff1d996e75449b65857428
parent781cc523af69a98efbd1b93cc89cec76145b8d14 (diff)
downloadyoutube-dl-7a8501e307ec1283aeacb03b471b5509b8c92854.tar.xz
ignore parsing errors in get_element_by_id()
-rwxr-xr-xyoutube-dl5
-rwxr-xr-xyoutube_dl/__init__.py5
2 files changed, 8 insertions, 2 deletions
diff --git a/youtube-dl b/youtube-dl
index 78fb07ea1..dc7ec136f 100755
--- a/youtube-dl
+++ b/youtube-dl
@@ -252,7 +252,10 @@ class IDParser(HTMLParser.HTMLParser):
def get_element_by_id(id, html):
"""Return the content of the tag with the specified id in the passed HTML document"""
parser = IDParser(id)
- parser.loads(html)
+ try:
+ parser.loads(html)
+ except HTMLParser.HTMLParseError:
+ pass
return parser.get_result()
diff --git a/youtube_dl/__init__.py b/youtube_dl/__init__.py
index 78fb07ea1..dc7ec136f 100755
--- a/youtube_dl/__init__.py
+++ b/youtube_dl/__init__.py
@@ -252,7 +252,10 @@ class IDParser(HTMLParser.HTMLParser):
def get_element_by_id(id, html):
"""Return the content of the tag with the specified id in the passed HTML document"""
parser = IDParser(id)
- parser.loads(html)
+ try:
+ parser.loads(html)
+ except HTMLParser.HTMLParseError:
+ pass
return parser.get_result()