Browse Source

[brightcove] Use `compat_xml_parse_error` (Closes #6060)

Sergey M․ 10 years ago
parent
commit
e20d0c1e69
1 changed files with 2 additions and 1 deletions
  1. 2 1
      youtube_dl/extractor/brightcove.py

+ 2 - 1
youtube_dl/extractor/brightcove.py

@@ -13,6 +13,7 @@ from ..compat import (
     compat_urllib_parse_urlparse,
     compat_urllib_parse_urlparse,
     compat_urllib_request,
     compat_urllib_request,
     compat_urlparse,
     compat_urlparse,
+    compat_xml_parse_error,
 )
 )
 from ..utils import (
 from ..utils import (
     determine_ext,
     determine_ext,
@@ -119,7 +120,7 @@ class BrightcoveIE(InfoExtractor):
 
 
         try:
         try:
             object_doc = xml.etree.ElementTree.fromstring(object_str.encode('utf-8'))
             object_doc = xml.etree.ElementTree.fromstring(object_str.encode('utf-8'))
-        except xml.etree.ElementTree.ParseError:
+        except compat_xml_parse_error:
             return
             return
 
 
         fv_el = find_xpath_attr(object_doc, './param', 'name', 'flashVars')
         fv_el = find_xpath_attr(object_doc, './param', 'name', 'flashVars')